mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-25 16:04:01 +00:00
8 lines
226 B
TypeScript
8 lines
226 B
TypeScript
declare function encodeURIComponent(uriComponent: string | number | boolean): string;
|
|
|
|
declare interface Global {
|
|
URL: typeof URL,
|
|
URLSearchParams: typeof URLSearchParams,
|
|
encodeURIComponent: typeof encodeURIComponent
|
|
}
|