Initialize project with Payload CMS
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 11s
Build & Deploy / 🧪 QA (push) Failing after 32s
Build & Deploy / 🏗️ Build (push) Has been skipped
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 2s
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 11s
Build & Deploy / 🧪 QA (push) Failing after 32s
Build & Deploy / 🏗️ Build (push) Has been skipped
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 2s
This commit is contained in:
21
node_modules/@types/body-parser/LICENSE
generated
vendored
21
node_modules/@types/body-parser/LICENSE
generated
vendored
@@ -1,21 +0,0 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE
|
||||
15
node_modules/@types/body-parser/README.md
generated
vendored
15
node_modules/@types/body-parser/README.md
generated
vendored
@@ -1,15 +0,0 @@
|
||||
# Installation
|
||||
> `npm install --save @types/body-parser`
|
||||
|
||||
# Summary
|
||||
This package contains type definitions for body-parser (https://github.com/expressjs/body-parser).
|
||||
|
||||
# Details
|
||||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/body-parser.
|
||||
|
||||
### Additional Details
|
||||
* Last updated: Sat, 07 Jun 2025 02:15:25 GMT
|
||||
* Dependencies: [@types/connect](https://npmjs.com/package/@types/connect), [@types/node](https://npmjs.com/package/@types/node)
|
||||
|
||||
# Credits
|
||||
These definitions were written by [Santi Albo](https://github.com/santialbo), [Vilic Vane](https://github.com/vilic), [Jonathan Häberle](https://github.com/dreampulse), [Gevik Babakhani](https://github.com/blendsdk), [Tomasz Łaziuk](https://github.com/tlaziuk), [Jason Walton](https://github.com/jwalton), [Piotr Błażejewicz](https://github.com/peterblazejewicz), and [Sebastian Beltran](https://github.com/bjohansebas).
|
||||
95
node_modules/@types/body-parser/index.d.ts
generated
vendored
95
node_modules/@types/body-parser/index.d.ts
generated
vendored
@@ -1,95 +0,0 @@
|
||||
/// <reference types="node" />
|
||||
|
||||
import { NextHandleFunction } from "connect";
|
||||
import * as http from "http";
|
||||
|
||||
// for docs go to https://github.com/expressjs/body-parser/tree/1.19.0#body-parser
|
||||
|
||||
declare namespace bodyParser {
|
||||
interface BodyParser {
|
||||
/**
|
||||
* @deprecated use individual json/urlencoded middlewares
|
||||
*/
|
||||
(options?: OptionsJson & OptionsText & OptionsUrlencoded): NextHandleFunction;
|
||||
/**
|
||||
* Returns middleware that only parses json and only looks at requests
|
||||
* where the Content-Type header matches the type option.
|
||||
*/
|
||||
json(options?: OptionsJson): NextHandleFunction;
|
||||
/**
|
||||
* Returns middleware that parses all bodies as a Buffer and only looks at requests
|
||||
* where the Content-Type header matches the type option.
|
||||
*/
|
||||
raw(options?: Options): NextHandleFunction;
|
||||
|
||||
/**
|
||||
* Returns middleware that parses all bodies as a string and only looks at requests
|
||||
* where the Content-Type header matches the type option.
|
||||
*/
|
||||
text(options?: OptionsText): NextHandleFunction;
|
||||
/**
|
||||
* Returns middleware that only parses urlencoded bodies and only looks at requests
|
||||
* where the Content-Type header matches the type option
|
||||
*/
|
||||
urlencoded(options?: OptionsUrlencoded): NextHandleFunction;
|
||||
}
|
||||
|
||||
interface Options {
|
||||
/** When set to true, then deflated (compressed) bodies will be inflated; when false, deflated bodies are rejected. Defaults to true. */
|
||||
inflate?: boolean | undefined;
|
||||
/**
|
||||
* Controls the maximum request body size. If this is a number,
|
||||
* then the value specifies the number of bytes; if it is a string,
|
||||
* the value is passed to the bytes library for parsing. Defaults to '100kb'.
|
||||
*/
|
||||
limit?: number | string | undefined;
|
||||
/**
|
||||
* The type option is used to determine what media type the middleware will parse
|
||||
*/
|
||||
type?: string | string[] | ((req: http.IncomingMessage) => any) | undefined;
|
||||
/**
|
||||
* The verify option, if supplied, is called as verify(req, res, buf, encoding),
|
||||
* where buf is a Buffer of the raw request body and encoding is the encoding of the request.
|
||||
*/
|
||||
verify?(req: http.IncomingMessage, res: http.ServerResponse, buf: Buffer, encoding: string): void;
|
||||
}
|
||||
|
||||
interface OptionsJson extends Options {
|
||||
/**
|
||||
* The reviver option is passed directly to JSON.parse as the second argument.
|
||||
*/
|
||||
reviver?(key: string, value: any): any;
|
||||
/**
|
||||
* When set to `true`, will only accept arrays and objects;
|
||||
* when `false` will accept anything JSON.parse accepts. Defaults to `true`.
|
||||
*/
|
||||
strict?: boolean | undefined;
|
||||
}
|
||||
|
||||
interface OptionsText extends Options {
|
||||
/**
|
||||
* Specify the default character set for the text content if the charset
|
||||
* is not specified in the Content-Type header of the request.
|
||||
* Defaults to `utf-8`.
|
||||
*/
|
||||
defaultCharset?: string | undefined;
|
||||
}
|
||||
|
||||
interface OptionsUrlencoded extends Options {
|
||||
/**
|
||||
* The extended option allows to choose between parsing the URL-encoded data
|
||||
* with the querystring library (when `false`) or the qs library (when `true`).
|
||||
*/
|
||||
extended?: boolean | undefined;
|
||||
/**
|
||||
* The parameterLimit option controls the maximum number of parameters
|
||||
* that are allowed in the URL-encoded data. If a request contains more parameters than this value,
|
||||
* a 413 will be returned to the client. Defaults to 1000.
|
||||
*/
|
||||
parameterLimit?: number | undefined;
|
||||
}
|
||||
}
|
||||
|
||||
declare const bodyParser: bodyParser.BodyParser;
|
||||
|
||||
export = bodyParser;
|
||||
64
node_modules/@types/body-parser/package.json
generated
vendored
64
node_modules/@types/body-parser/package.json
generated
vendored
@@ -1,64 +0,0 @@
|
||||
{
|
||||
"name": "@types/body-parser",
|
||||
"version": "1.19.6",
|
||||
"description": "TypeScript definitions for body-parser",
|
||||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/body-parser",
|
||||
"license": "MIT",
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Santi Albo",
|
||||
"githubUsername": "santialbo",
|
||||
"url": "https://github.com/santialbo"
|
||||
},
|
||||
{
|
||||
"name": "Vilic Vane",
|
||||
"githubUsername": "vilic",
|
||||
"url": "https://github.com/vilic"
|
||||
},
|
||||
{
|
||||
"name": "Jonathan Häberle",
|
||||
"githubUsername": "dreampulse",
|
||||
"url": "https://github.com/dreampulse"
|
||||
},
|
||||
{
|
||||
"name": "Gevik Babakhani",
|
||||
"githubUsername": "blendsdk",
|
||||
"url": "https://github.com/blendsdk"
|
||||
},
|
||||
{
|
||||
"name": "Tomasz Łaziuk",
|
||||
"githubUsername": "tlaziuk",
|
||||
"url": "https://github.com/tlaziuk"
|
||||
},
|
||||
{
|
||||
"name": "Jason Walton",
|
||||
"githubUsername": "jwalton",
|
||||
"url": "https://github.com/jwalton"
|
||||
},
|
||||
{
|
||||
"name": "Piotr Błażejewicz",
|
||||
"githubUsername": "peterblazejewicz",
|
||||
"url": "https://github.com/peterblazejewicz"
|
||||
},
|
||||
{
|
||||
"name": "Sebastian Beltran",
|
||||
"githubUsername": "bjohansebas",
|
||||
"url": "https://github.com/bjohansebas"
|
||||
}
|
||||
],
|
||||
"main": "",
|
||||
"types": "index.d.ts",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
||||
"directory": "types/body-parser"
|
||||
},
|
||||
"scripts": {},
|
||||
"dependencies": {
|
||||
"@types/connect": "*",
|
||||
"@types/node": "*"
|
||||
},
|
||||
"peerDependencies": {},
|
||||
"typesPublisherContentHash": "d788c843f427d6ca19640ee90eb433324a18f23aed05402a82c4e47e6d60b29d",
|
||||
"typeScriptVersion": "5.1"
|
||||
}
|
||||
21
node_modules/@types/connect/LICENSE
generated
vendored
21
node_modules/@types/connect/LICENSE
generated
vendored
@@ -1,21 +0,0 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE
|
||||
15
node_modules/@types/connect/README.md
generated
vendored
15
node_modules/@types/connect/README.md
generated
vendored
@@ -1,15 +0,0 @@
|
||||
# Installation
|
||||
> `npm install --save @types/connect`
|
||||
|
||||
# Summary
|
||||
This package contains type definitions for connect (https://github.com/senchalabs/connect).
|
||||
|
||||
# Details
|
||||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/connect.
|
||||
|
||||
### Additional Details
|
||||
* Last updated: Mon, 06 Nov 2023 22:41:05 GMT
|
||||
* Dependencies: [@types/node](https://npmjs.com/package/@types/node)
|
||||
|
||||
# Credits
|
||||
These definitions were written by [Maxime LUCE](https://github.com/SomaticIT), and [Evan Hahn](https://github.com/EvanHahn).
|
||||
91
node_modules/@types/connect/index.d.ts
generated
vendored
91
node_modules/@types/connect/index.d.ts
generated
vendored
@@ -1,91 +0,0 @@
|
||||
/// <reference types="node" />
|
||||
|
||||
import * as http from "http";
|
||||
|
||||
/**
|
||||
* Create a new connect server.
|
||||
*/
|
||||
declare function createServer(): createServer.Server;
|
||||
|
||||
declare namespace createServer {
|
||||
export type ServerHandle = HandleFunction | http.Server;
|
||||
|
||||
export class IncomingMessage extends http.IncomingMessage {
|
||||
originalUrl?: http.IncomingMessage["url"] | undefined;
|
||||
}
|
||||
|
||||
type NextFunction = (err?: any) => void;
|
||||
|
||||
export type SimpleHandleFunction = (req: IncomingMessage, res: http.ServerResponse) => void;
|
||||
export type NextHandleFunction = (req: IncomingMessage, res: http.ServerResponse, next: NextFunction) => void;
|
||||
export type ErrorHandleFunction = (
|
||||
err: any,
|
||||
req: IncomingMessage,
|
||||
res: http.ServerResponse,
|
||||
next: NextFunction,
|
||||
) => void;
|
||||
export type HandleFunction = SimpleHandleFunction | NextHandleFunction | ErrorHandleFunction;
|
||||
|
||||
export interface ServerStackItem {
|
||||
route: string;
|
||||
handle: ServerHandle;
|
||||
}
|
||||
|
||||
export interface Server extends NodeJS.EventEmitter {
|
||||
(req: http.IncomingMessage, res: http.ServerResponse, next?: Function): void;
|
||||
|
||||
route: string;
|
||||
stack: ServerStackItem[];
|
||||
|
||||
/**
|
||||
* Utilize the given middleware `handle` to the given `route`,
|
||||
* defaulting to _/_. This "route" is the mount-point for the
|
||||
* middleware, when given a value other than _/_ the middleware
|
||||
* is only effective when that segment is present in the request's
|
||||
* pathname.
|
||||
*
|
||||
* For example if we were to mount a function at _/admin_, it would
|
||||
* be invoked on _/admin_, and _/admin/settings_, however it would
|
||||
* not be invoked for _/_, or _/posts_.
|
||||
*/
|
||||
use(fn: NextHandleFunction): Server;
|
||||
use(fn: HandleFunction): Server;
|
||||
use(route: string, fn: NextHandleFunction): Server;
|
||||
use(route: string, fn: HandleFunction): Server;
|
||||
|
||||
/**
|
||||
* Handle server requests, punting them down
|
||||
* the middleware stack.
|
||||
*/
|
||||
handle(req: http.IncomingMessage, res: http.ServerResponse, next: Function): void;
|
||||
|
||||
/**
|
||||
* Listen for connections.
|
||||
*
|
||||
* This method takes the same arguments
|
||||
* as node's `http.Server#listen()`.
|
||||
*
|
||||
* HTTP and HTTPS:
|
||||
*
|
||||
* If you run your application both as HTTP
|
||||
* and HTTPS you may wrap them individually,
|
||||
* since your Connect "server" is really just
|
||||
* a JavaScript `Function`.
|
||||
*
|
||||
* var connect = require('connect')
|
||||
* , http = require('http')
|
||||
* , https = require('https');
|
||||
*
|
||||
* var app = connect();
|
||||
*
|
||||
* http.createServer(app).listen(80);
|
||||
* https.createServer(options, app).listen(443);
|
||||
*/
|
||||
listen(port: number, hostname?: string, backlog?: number, callback?: Function): http.Server;
|
||||
listen(port: number, hostname?: string, callback?: Function): http.Server;
|
||||
listen(path: string, callback?: Function): http.Server;
|
||||
listen(handle: any, listeningListener?: Function): http.Server;
|
||||
}
|
||||
}
|
||||
|
||||
export = createServer;
|
||||
32
node_modules/@types/connect/package.json
generated
vendored
32
node_modules/@types/connect/package.json
generated
vendored
@@ -1,32 +0,0 @@
|
||||
{
|
||||
"name": "@types/connect",
|
||||
"version": "3.4.38",
|
||||
"description": "TypeScript definitions for connect",
|
||||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/connect",
|
||||
"license": "MIT",
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Maxime LUCE",
|
||||
"githubUsername": "SomaticIT",
|
||||
"url": "https://github.com/SomaticIT"
|
||||
},
|
||||
{
|
||||
"name": "Evan Hahn",
|
||||
"githubUsername": "EvanHahn",
|
||||
"url": "https://github.com/EvanHahn"
|
||||
}
|
||||
],
|
||||
"main": "",
|
||||
"types": "index.d.ts",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
||||
"directory": "types/connect"
|
||||
},
|
||||
"scripts": {},
|
||||
"dependencies": {
|
||||
"@types/node": "*"
|
||||
},
|
||||
"typesPublisherContentHash": "8990242237504bdec53088b79e314b94bec69286df9de56db31f22de403b4092",
|
||||
"typeScriptVersion": "4.5"
|
||||
}
|
||||
21
node_modules/@types/http-errors/LICENSE
generated
vendored
21
node_modules/@types/http-errors/LICENSE
generated
vendored
@@ -1,21 +0,0 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE
|
||||
15
node_modules/@types/http-errors/README.md
generated
vendored
15
node_modules/@types/http-errors/README.md
generated
vendored
@@ -1,15 +0,0 @@
|
||||
# Installation
|
||||
> `npm install --save @types/http-errors`
|
||||
|
||||
# Summary
|
||||
This package contains type definitions for http-errors (https://github.com/jshttp/http-errors).
|
||||
|
||||
# Details
|
||||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/http-errors.
|
||||
|
||||
### Additional Details
|
||||
* Last updated: Sat, 07 Jun 2025 02:15:25 GMT
|
||||
* Dependencies: none
|
||||
|
||||
# Credits
|
||||
These definitions were written by [Tanguy Krotoff](https://github.com/tkrotoff), [BendingBender](https://github.com/BendingBender), and [Sebastian Beltran](https://github.com/bjohansebas).
|
||||
77
node_modules/@types/http-errors/index.d.ts
generated
vendored
77
node_modules/@types/http-errors/index.d.ts
generated
vendored
@@ -1,77 +0,0 @@
|
||||
export = createHttpError;
|
||||
|
||||
declare const createHttpError: createHttpError.CreateHttpError & createHttpError.NamedConstructors & {
|
||||
isHttpError: createHttpError.IsHttpError;
|
||||
};
|
||||
|
||||
declare namespace createHttpError {
|
||||
interface HttpError<N extends number = number> extends Error {
|
||||
status: N;
|
||||
statusCode: N;
|
||||
expose: boolean;
|
||||
headers?: {
|
||||
[key: string]: string;
|
||||
} | undefined;
|
||||
[key: string]: any;
|
||||
}
|
||||
|
||||
type UnknownError = Error | string | { [key: string]: any };
|
||||
|
||||
interface HttpErrorConstructor<N extends number = number> {
|
||||
(msg?: string): HttpError<N>;
|
||||
new(msg?: string): HttpError<N>;
|
||||
}
|
||||
|
||||
interface CreateHttpError {
|
||||
<N extends number = number>(arg: N, ...rest: UnknownError[]): HttpError<N>;
|
||||
(...rest: UnknownError[]): HttpError;
|
||||
}
|
||||
|
||||
type IsHttpError = (error: unknown) => error is HttpError;
|
||||
|
||||
type NamedConstructors =
|
||||
& {
|
||||
HttpError: HttpErrorConstructor;
|
||||
}
|
||||
& Record<"BadRequest" | "400", HttpErrorConstructor<400>>
|
||||
& Record<"Unauthorized" | "401", HttpErrorConstructor<401>>
|
||||
& Record<"PaymentRequired" | "402", HttpErrorConstructor<402>>
|
||||
& Record<"Forbidden" | "403", HttpErrorConstructor<403>>
|
||||
& Record<"NotFound" | "404", HttpErrorConstructor<404>>
|
||||
& Record<"MethodNotAllowed" | "405", HttpErrorConstructor<405>>
|
||||
& Record<"NotAcceptable" | "406", HttpErrorConstructor<406>>
|
||||
& Record<"ProxyAuthenticationRequired" | "407", HttpErrorConstructor<407>>
|
||||
& Record<"RequestTimeout" | "408", HttpErrorConstructor<408>>
|
||||
& Record<"Conflict" | "409", HttpErrorConstructor<409>>
|
||||
& Record<"Gone" | "410", HttpErrorConstructor<410>>
|
||||
& Record<"LengthRequired" | "411", HttpErrorConstructor<411>>
|
||||
& Record<"PreconditionFailed" | "412", HttpErrorConstructor<412>>
|
||||
& Record<"PayloadTooLarge" | "413", HttpErrorConstructor<413>>
|
||||
& Record<"URITooLong" | "414", HttpErrorConstructor<414>>
|
||||
& Record<"UnsupportedMediaType" | "415", HttpErrorConstructor<415>>
|
||||
& Record<"RangeNotSatisfiable" | "416", HttpErrorConstructor<416>>
|
||||
& Record<"ExpectationFailed" | "417", HttpErrorConstructor<417>>
|
||||
& Record<"ImATeapot" | "418", HttpErrorConstructor<418>>
|
||||
& Record<"MisdirectedRequest" | "421", HttpErrorConstructor<421>>
|
||||
& Record<"UnprocessableEntity" | "422", HttpErrorConstructor<422>>
|
||||
& Record<"Locked" | "423", HttpErrorConstructor<423>>
|
||||
& Record<"FailedDependency" | "424", HttpErrorConstructor<424>>
|
||||
& Record<"TooEarly" | "425", HttpErrorConstructor<425>>
|
||||
& Record<"UpgradeRequired" | "426", HttpErrorConstructor<426>>
|
||||
& Record<"PreconditionRequired" | "428", HttpErrorConstructor<428>>
|
||||
& Record<"TooManyRequests" | "429", HttpErrorConstructor<429>>
|
||||
& Record<"RequestHeaderFieldsTooLarge" | "431", HttpErrorConstructor<431>>
|
||||
& Record<"UnavailableForLegalReasons" | "451", HttpErrorConstructor<451>>
|
||||
& Record<"InternalServerError" | "500", HttpErrorConstructor<500>>
|
||||
& Record<"NotImplemented" | "501", HttpErrorConstructor<501>>
|
||||
& Record<"BadGateway" | "502", HttpErrorConstructor<502>>
|
||||
& Record<"ServiceUnavailable" | "503", HttpErrorConstructor<503>>
|
||||
& Record<"GatewayTimeout" | "504", HttpErrorConstructor<504>>
|
||||
& Record<"HTTPVersionNotSupported" | "505", HttpErrorConstructor<505>>
|
||||
& Record<"VariantAlsoNegotiates" | "506", HttpErrorConstructor<506>>
|
||||
& Record<"InsufficientStorage" | "507", HttpErrorConstructor<507>>
|
||||
& Record<"LoopDetected" | "508", HttpErrorConstructor<508>>
|
||||
& Record<"BandwidthLimitExceeded" | "509", HttpErrorConstructor<509>>
|
||||
& Record<"NotExtended" | "510", HttpErrorConstructor<510>>
|
||||
& Record<"NetworkAuthenticationRequire" | "511", HttpErrorConstructor<511>>;
|
||||
}
|
||||
36
node_modules/@types/http-errors/package.json
generated
vendored
36
node_modules/@types/http-errors/package.json
generated
vendored
@@ -1,36 +0,0 @@
|
||||
{
|
||||
"name": "@types/http-errors",
|
||||
"version": "2.0.5",
|
||||
"description": "TypeScript definitions for http-errors",
|
||||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/http-errors",
|
||||
"license": "MIT",
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Tanguy Krotoff",
|
||||
"githubUsername": "tkrotoff",
|
||||
"url": "https://github.com/tkrotoff"
|
||||
},
|
||||
{
|
||||
"name": "BendingBender",
|
||||
"githubUsername": "BendingBender",
|
||||
"url": "https://github.com/BendingBender"
|
||||
},
|
||||
{
|
||||
"name": "Sebastian Beltran",
|
||||
"githubUsername": "bjohansebas",
|
||||
"url": "https://github.com/bjohansebas"
|
||||
}
|
||||
],
|
||||
"main": "",
|
||||
"types": "index.d.ts",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
||||
"directory": "types/http-errors"
|
||||
},
|
||||
"scripts": {},
|
||||
"dependencies": {},
|
||||
"peerDependencies": {},
|
||||
"typesPublisherContentHash": "621b9125a6493a2fa928b9150e335cb57429fb00e3bc0257426f1173903f7a4a",
|
||||
"typeScriptVersion": "5.1"
|
||||
}
|
||||
21
node_modules/@types/mime/LICENSE
generated
vendored
21
node_modules/@types/mime/LICENSE
generated
vendored
@@ -1,21 +0,0 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE
|
||||
10
node_modules/@types/mime/Mime.d.ts
generated
vendored
10
node_modules/@types/mime/Mime.d.ts
generated
vendored
@@ -1,10 +0,0 @@
|
||||
import { TypeMap } from "./index";
|
||||
|
||||
export default class Mime {
|
||||
constructor(mimes: TypeMap);
|
||||
|
||||
lookup(path: string, fallback?: string): string;
|
||||
extension(mime: string): string | undefined;
|
||||
load(filepath: string): void;
|
||||
define(mimes: TypeMap): void;
|
||||
}
|
||||
15
node_modules/@types/mime/README.md
generated
vendored
15
node_modules/@types/mime/README.md
generated
vendored
@@ -1,15 +0,0 @@
|
||||
# Installation
|
||||
> `npm install --save @types/mime`
|
||||
|
||||
# Summary
|
||||
This package contains type definitions for mime (https://github.com/broofa/node-mime).
|
||||
|
||||
# Details
|
||||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mime/v1.
|
||||
|
||||
### Additional Details
|
||||
* Last updated: Tue, 07 Nov 2023 20:08:00 GMT
|
||||
* Dependencies: none
|
||||
|
||||
# Credits
|
||||
These definitions were written by [Jeff Goddard](https://github.com/jedigo), and [Daniel Hritzkiv](https://github.com/dhritzkiv).
|
||||
31
node_modules/@types/mime/index.d.ts
generated
vendored
31
node_modules/@types/mime/index.d.ts
generated
vendored
@@ -1,31 +0,0 @@
|
||||
// Originally imported from: https://github.com/soywiz/typescript-node-definitions/mime.d.ts
|
||||
|
||||
export as namespace mime;
|
||||
|
||||
export interface TypeMap {
|
||||
[key: string]: string[];
|
||||
}
|
||||
|
||||
/**
|
||||
* Look up a mime type based on extension.
|
||||
*
|
||||
* If not found, uses the fallback argument if provided, and otherwise
|
||||
* uses `default_type`.
|
||||
*/
|
||||
export function lookup(path: string, fallback?: string): string;
|
||||
/**
|
||||
* Return a file extensions associated with a mime type.
|
||||
*/
|
||||
export function extension(mime: string): string | undefined;
|
||||
/**
|
||||
* Load an Apache2-style ".types" file.
|
||||
*/
|
||||
export function load(filepath: string): void;
|
||||
export function define(mimes: TypeMap): void;
|
||||
|
||||
export interface Charsets {
|
||||
lookup(mime: string, fallback: string): string;
|
||||
}
|
||||
|
||||
export const charsets: Charsets;
|
||||
export const default_type: string;
|
||||
7
node_modules/@types/mime/lite.d.ts
generated
vendored
7
node_modules/@types/mime/lite.d.ts
generated
vendored
@@ -1,7 +0,0 @@
|
||||
import { default as Mime } from "./Mime";
|
||||
|
||||
declare const mimelite: Mime;
|
||||
|
||||
export as namespace mimelite;
|
||||
|
||||
export = mimelite;
|
||||
30
node_modules/@types/mime/package.json
generated
vendored
30
node_modules/@types/mime/package.json
generated
vendored
@@ -1,30 +0,0 @@
|
||||
{
|
||||
"name": "@types/mime",
|
||||
"version": "1.3.5",
|
||||
"description": "TypeScript definitions for mime",
|
||||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mime",
|
||||
"license": "MIT",
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Jeff Goddard",
|
||||
"githubUsername": "jedigo",
|
||||
"url": "https://github.com/jedigo"
|
||||
},
|
||||
{
|
||||
"name": "Daniel Hritzkiv",
|
||||
"githubUsername": "dhritzkiv",
|
||||
"url": "https://github.com/dhritzkiv"
|
||||
}
|
||||
],
|
||||
"main": "",
|
||||
"types": "index.d.ts",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
||||
"directory": "types/mime"
|
||||
},
|
||||
"scripts": {},
|
||||
"dependencies": {},
|
||||
"typesPublisherContentHash": "2ad7ee9a549e6721825e733c6a1a7e8bee0ca7ba93d9ab922c8f4558def52d77",
|
||||
"typeScriptVersion": "4.5"
|
||||
}
|
||||
21
node_modules/@types/qs/LICENSE
generated
vendored
21
node_modules/@types/qs/LICENSE
generated
vendored
@@ -1,21 +0,0 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE
|
||||
15
node_modules/@types/qs/README.md
generated
vendored
15
node_modules/@types/qs/README.md
generated
vendored
@@ -1,15 +0,0 @@
|
||||
# Installation
|
||||
> `npm install --save @types/qs`
|
||||
|
||||
# Summary
|
||||
This package contains type definitions for qs (https://github.com/ljharb/qs).
|
||||
|
||||
# Details
|
||||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/qs.
|
||||
|
||||
### Additional Details
|
||||
* Last updated: Sat, 17 May 2025 04:36:54 GMT
|
||||
* Dependencies: none
|
||||
|
||||
# Credits
|
||||
These definitions were written by [Roman Korneev](https://github.com/RWander), [Leon Yu](https://github.com/leonyu), [Belinda Teh](https://github.com/tehbelinda), [Melvin Lee](https://github.com/zyml), [Arturs Vonda](https://github.com/artursvonda), [Carlos Bonetti](https://github.com/CarlosBonetti), [Dan Smith](https://github.com/dpsmith3), [Hunter Perrin](https://github.com/hperrin), and [Jordan Harband](https://github.com/ljharb).
|
||||
82
node_modules/@types/qs/index.d.ts
generated
vendored
82
node_modules/@types/qs/index.d.ts
generated
vendored
@@ -1,82 +0,0 @@
|
||||
export = QueryString;
|
||||
export as namespace qs;
|
||||
|
||||
declare namespace QueryString {
|
||||
type defaultEncoder = (str: any, defaultEncoder?: any, charset?: string) => string;
|
||||
type defaultDecoder = (str: string, decoder?: any, charset?: string) => string;
|
||||
|
||||
type BooleanOptional = boolean | undefined;
|
||||
|
||||
interface IStringifyBaseOptions {
|
||||
delimiter?: string | undefined;
|
||||
strictNullHandling?: boolean | undefined;
|
||||
skipNulls?: boolean | undefined;
|
||||
encode?: boolean | undefined;
|
||||
encoder?:
|
||||
| ((str: any, defaultEncoder: defaultEncoder, charset: string, type: "key" | "value") => string)
|
||||
| undefined;
|
||||
filter?: Array<string | number> | ((prefix: string, value: any) => any) | undefined;
|
||||
arrayFormat?: "indices" | "brackets" | "repeat" | "comma" | undefined;
|
||||
indices?: boolean | undefined;
|
||||
sort?: ((a: string, b: string) => number) | undefined;
|
||||
serializeDate?: ((d: Date) => string) | undefined;
|
||||
format?: "RFC1738" | "RFC3986" | undefined;
|
||||
encodeValuesOnly?: boolean | undefined;
|
||||
addQueryPrefix?: boolean | undefined;
|
||||
charset?: "utf-8" | "iso-8859-1" | undefined;
|
||||
charsetSentinel?: boolean | undefined;
|
||||
allowEmptyArrays?: boolean | undefined;
|
||||
commaRoundTrip?: boolean | undefined;
|
||||
}
|
||||
|
||||
type IStringifyDynamicOptions<AllowDots extends BooleanOptional> = AllowDots extends true
|
||||
? { allowDots?: AllowDots; encodeDotInKeys?: boolean }
|
||||
: { allowDots?: boolean; encodeDotInKeys?: false };
|
||||
|
||||
type IStringifyOptions<AllowDots extends BooleanOptional = undefined> =
|
||||
& IStringifyBaseOptions
|
||||
& IStringifyDynamicOptions<AllowDots>;
|
||||
|
||||
interface IParseBaseOptions {
|
||||
comma?: boolean | undefined;
|
||||
delimiter?: string | RegExp | undefined;
|
||||
depth?: number | false | undefined;
|
||||
decoder?:
|
||||
| ((str: string, defaultDecoder: defaultDecoder, charset: string, type: "key" | "value") => any)
|
||||
| undefined;
|
||||
arrayLimit?: number | undefined;
|
||||
parseArrays?: boolean | undefined;
|
||||
plainObjects?: boolean | undefined;
|
||||
allowPrototypes?: boolean | undefined;
|
||||
allowSparse?: boolean | undefined;
|
||||
parameterLimit?: number | undefined;
|
||||
strictNullHandling?: boolean | undefined;
|
||||
ignoreQueryPrefix?: boolean | undefined;
|
||||
charset?: "utf-8" | "iso-8859-1" | undefined;
|
||||
charsetSentinel?: boolean | undefined;
|
||||
interpretNumericEntities?: boolean | undefined;
|
||||
allowEmptyArrays?: boolean | undefined;
|
||||
duplicates?: "combine" | "first" | "last" | undefined;
|
||||
strictDepth?: boolean | undefined;
|
||||
throwOnLimitExceeded?: boolean | undefined;
|
||||
}
|
||||
|
||||
type IParseDynamicOptions<AllowDots extends BooleanOptional> = AllowDots extends true
|
||||
? { allowDots?: AllowDots; decodeDotInKeys?: boolean }
|
||||
: { allowDots?: boolean; decodeDotInKeys?: false };
|
||||
|
||||
type IParseOptions<AllowDots extends BooleanOptional = undefined> =
|
||||
& IParseBaseOptions
|
||||
& IParseDynamicOptions<AllowDots>;
|
||||
|
||||
interface ParsedQs {
|
||||
[key: string]: undefined | string | ParsedQs | (string | ParsedQs)[];
|
||||
}
|
||||
|
||||
function stringify(obj: any, options?: IStringifyOptions<BooleanOptional>): string;
|
||||
function parse(str: string, options?: IParseOptions<BooleanOptional> & { decoder?: never | undefined }): ParsedQs;
|
||||
function parse(
|
||||
str: string | Record<string, string>,
|
||||
options?: IParseOptions<BooleanOptional>,
|
||||
): { [key: string]: unknown };
|
||||
}
|
||||
66
node_modules/@types/qs/package.json
generated
vendored
66
node_modules/@types/qs/package.json
generated
vendored
@@ -1,66 +0,0 @@
|
||||
{
|
||||
"name": "@types/qs",
|
||||
"version": "6.14.0",
|
||||
"description": "TypeScript definitions for qs",
|
||||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/qs",
|
||||
"license": "MIT",
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Roman Korneev",
|
||||
"githubUsername": "RWander",
|
||||
"url": "https://github.com/RWander"
|
||||
},
|
||||
{
|
||||
"name": "Leon Yu",
|
||||
"githubUsername": "leonyu",
|
||||
"url": "https://github.com/leonyu"
|
||||
},
|
||||
{
|
||||
"name": "Belinda Teh",
|
||||
"githubUsername": "tehbelinda",
|
||||
"url": "https://github.com/tehbelinda"
|
||||
},
|
||||
{
|
||||
"name": "Melvin Lee",
|
||||
"githubUsername": "zyml",
|
||||
"url": "https://github.com/zyml"
|
||||
},
|
||||
{
|
||||
"name": "Arturs Vonda",
|
||||
"githubUsername": "artursvonda",
|
||||
"url": "https://github.com/artursvonda"
|
||||
},
|
||||
{
|
||||
"name": "Carlos Bonetti",
|
||||
"githubUsername": "CarlosBonetti",
|
||||
"url": "https://github.com/CarlosBonetti"
|
||||
},
|
||||
{
|
||||
"name": "Dan Smith",
|
||||
"githubUsername": "dpsmith3",
|
||||
"url": "https://github.com/dpsmith3"
|
||||
},
|
||||
{
|
||||
"name": "Hunter Perrin",
|
||||
"githubUsername": "hperrin",
|
||||
"url": "https://github.com/hperrin"
|
||||
},
|
||||
{
|
||||
"name": "Jordan Harband",
|
||||
"githubUsername": "ljharb",
|
||||
"url": "https://github.com/ljharb"
|
||||
}
|
||||
],
|
||||
"main": "",
|
||||
"types": "index.d.ts",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
||||
"directory": "types/qs"
|
||||
},
|
||||
"scripts": {},
|
||||
"dependencies": {},
|
||||
"peerDependencies": {},
|
||||
"typesPublisherContentHash": "7ce8128acabe5d960292bd50615bb46af79b7ae86cf61e48a5398fcc34410644",
|
||||
"typeScriptVersion": "5.1"
|
||||
}
|
||||
21
node_modules/@types/range-parser/LICENSE
generated
vendored
21
node_modules/@types/range-parser/LICENSE
generated
vendored
@@ -1,21 +0,0 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE
|
||||
53
node_modules/@types/range-parser/README.md
generated
vendored
53
node_modules/@types/range-parser/README.md
generated
vendored
@@ -1,53 +0,0 @@
|
||||
# Installation
|
||||
> `npm install --save @types/range-parser`
|
||||
|
||||
# Summary
|
||||
This package contains type definitions for range-parser (https://github.com/jshttp/range-parser).
|
||||
|
||||
# Details
|
||||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/range-parser.
|
||||
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/range-parser/index.d.ts)
|
||||
````ts
|
||||
/**
|
||||
* When ranges are returned, the array has a "type" property which is the type of
|
||||
* range that is required (most commonly, "bytes"). Each array element is an object
|
||||
* with a "start" and "end" property for the portion of the range.
|
||||
*
|
||||
* @returns `-1` when unsatisfiable and `-2` when syntactically invalid, ranges otherwise.
|
||||
*/
|
||||
declare function RangeParser(
|
||||
size: number,
|
||||
str: string,
|
||||
options?: RangeParser.Options,
|
||||
): RangeParser.Result | RangeParser.Ranges;
|
||||
|
||||
declare namespace RangeParser {
|
||||
interface Ranges extends Array<Range> {
|
||||
type: string;
|
||||
}
|
||||
interface Range {
|
||||
start: number;
|
||||
end: number;
|
||||
}
|
||||
interface Options {
|
||||
/**
|
||||
* The "combine" option can be set to `true` and overlapping & adjacent ranges
|
||||
* will be combined into a single range.
|
||||
*/
|
||||
combine?: boolean | undefined;
|
||||
}
|
||||
type ResultUnsatisfiable = -1;
|
||||
type ResultInvalid = -2;
|
||||
type Result = ResultUnsatisfiable | ResultInvalid;
|
||||
}
|
||||
|
||||
export = RangeParser;
|
||||
|
||||
````
|
||||
|
||||
### Additional Details
|
||||
* Last updated: Tue, 07 Nov 2023 09:09:39 GMT
|
||||
* Dependencies: none
|
||||
|
||||
# Credits
|
||||
These definitions were written by [Tomek Łaziuk](https://github.com/tlaziuk).
|
||||
34
node_modules/@types/range-parser/index.d.ts
generated
vendored
34
node_modules/@types/range-parser/index.d.ts
generated
vendored
@@ -1,34 +0,0 @@
|
||||
/**
|
||||
* When ranges are returned, the array has a "type" property which is the type of
|
||||
* range that is required (most commonly, "bytes"). Each array element is an object
|
||||
* with a "start" and "end" property for the portion of the range.
|
||||
*
|
||||
* @returns `-1` when unsatisfiable and `-2` when syntactically invalid, ranges otherwise.
|
||||
*/
|
||||
declare function RangeParser(
|
||||
size: number,
|
||||
str: string,
|
||||
options?: RangeParser.Options,
|
||||
): RangeParser.Result | RangeParser.Ranges;
|
||||
|
||||
declare namespace RangeParser {
|
||||
interface Ranges extends Array<Range> {
|
||||
type: string;
|
||||
}
|
||||
interface Range {
|
||||
start: number;
|
||||
end: number;
|
||||
}
|
||||
interface Options {
|
||||
/**
|
||||
* The "combine" option can be set to `true` and overlapping & adjacent ranges
|
||||
* will be combined into a single range.
|
||||
*/
|
||||
combine?: boolean | undefined;
|
||||
}
|
||||
type ResultUnsatisfiable = -1;
|
||||
type ResultInvalid = -2;
|
||||
type Result = ResultUnsatisfiable | ResultInvalid;
|
||||
}
|
||||
|
||||
export = RangeParser;
|
||||
25
node_modules/@types/range-parser/package.json
generated
vendored
25
node_modules/@types/range-parser/package.json
generated
vendored
@@ -1,25 +0,0 @@
|
||||
{
|
||||
"name": "@types/range-parser",
|
||||
"version": "1.2.7",
|
||||
"description": "TypeScript definitions for range-parser",
|
||||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/range-parser",
|
||||
"license": "MIT",
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Tomek Łaziuk",
|
||||
"githubUsername": "tlaziuk",
|
||||
"url": "https://github.com/tlaziuk"
|
||||
}
|
||||
],
|
||||
"main": "",
|
||||
"types": "index.d.ts",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
||||
"directory": "types/range-parser"
|
||||
},
|
||||
"scripts": {},
|
||||
"dependencies": {},
|
||||
"typesPublisherContentHash": "85ed88e3afe8da85360c400901b67e99a7c6690c6376c5ab8939ae9dee4b0a93",
|
||||
"typeScriptVersion": "4.5"
|
||||
}
|
||||
Reference in New Issue
Block a user