UNPKG

@skyux/assets

Version:

This library was generated with [Nx](https://nx.dev).

9 lines (8 loc) 307 B
/** * An abstract class for injecting the ability to retrieve an asset file's URL at runtime. * The implementing class will be generated during build time. */ export declare abstract class SkyAppAssetsService { abstract getUrl(path: string): string; abstract getAllUrls(): Record<string, any>; }