@aurigma/design-atoms
Version:
Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.
8 lines (7 loc) • 340 B
TypeScript
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;