UNPKG

@builder.io/sdk

Version:
10 lines (9 loc) 313 B
/// <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 {};