UNPKG

@builder.io/sdk

Version:

This SDK is largely a wrapper over our [Content API](https://www.builder.io/c/docs/content-api)

10 lines (9 loc) 290 B
/// <reference types="node" /> import { UrlWithStringQuery } from 'url'; type Fix<T> = { [P in keyof T]: T[P] | null; }; export type UrlLike = Fix<UrlWithStringQuery>; export declare function emptyUrl(): UrlLike; export declare function parse(url: string): UrlLike; export {};