@builder.io/sdk
Version:
## Getting Started
10 lines (9 loc) • 313 B
TypeScript
/// <reference types="@types/node" />
import { UrlWithStringQuery } from 'url';
declare type Fix<T> = {
[P in keyof T]: T[P] | null;
};
export declare type UrlLike = Fix<UrlWithStringQuery>;
export declare function emptyUrl(): UrlLike;
export declare function parse(url: string): UrlLike;
export {};