UNPKG

@aurigma/design-atoms

Version:

Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.

9 lines (8 loc) 427 B
export declare function addUrlParameter(startUrl: string, name: string, value: string): string; export declare function buildUrl(baseUrl: string, endpoint: string, endpointParams?: { [name: string]: string; }, queryParams?: { [name: string]: string; }): string; export declare function shouldEncodeUrl(url: string): boolean; export declare function getQueryParams(url: string): Record<string, string | number>;