UNPKG

@skyux/assets

Version:

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

11 lines (9 loc) 333 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. */ declare abstract class SkyAppAssetsService { abstract getUrl(path: string): string; abstract getAllUrls(): Record<string, any>; } export { SkyAppAssetsService };