UNPKG

@nx/angular

Version:

The Nx Plugin for Angular contains executors, generators, and utilities for managing Angular applications and libraries within an Nx workspace. It provides: - Integration with libraries such as Storybook, Jest, ESLint, Tailwind CSS, Playwright and Cypre

14 lines 653 B
/** * Checks if a URL string is absolute (has protocol) */ export declare function isAbsoluteUrl(url: string): boolean; /** * Safely processes remote locations, handling both relative and absolute URLs * while preserving query parameters and hash fragments for absolute URLs */ export declare function processRemoteLocation(remoteLocation: string, remoteEntryExt: 'js' | 'mjs'): string; /** * Processes remote URLs for runtime environments, resolving relative URLs against window.location.origin */ export declare function processRuntimeRemoteUrl(remoteUrl: string, remoteEntryExt: 'js' | 'mjs'): string; //# sourceMappingURL=url-helpers.d.ts.map