First release
This commit is contained in:
commit
fa6c85266e
2339 changed files with 761050 additions and 0 deletions
22
node_modules/url-toolkit/src/url-toolkit.d.ts
generated
vendored
Normal file
22
node_modules/url-toolkit/src/url-toolkit.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
export as namespace URLToolkit;
|
||||
|
||||
export type URLParts = {
|
||||
scheme: string;
|
||||
netLoc: string;
|
||||
path: string;
|
||||
params: string;
|
||||
query: string;
|
||||
fragment: string;
|
||||
};
|
||||
|
||||
export function buildAbsoluteURL(
|
||||
baseURL: string,
|
||||
relativeURL: string,
|
||||
opts?: { alwaysNormalize?: boolean }
|
||||
): string;
|
||||
|
||||
export function parseURL(url: string): URLParts | null;
|
||||
|
||||
export function normalizePath(path: string): string;
|
||||
|
||||
export function buildURLFromParts(parts: URLParts): string;
|
Loading…
Add table
Add a link
Reference in a new issue