@dotglitch/ngx-common
Version:
Angular components and utilities that are commonly used.
17 lines (16 loc) • 511 B
TypeScript
import { InjectionToken } from '@angular/core';
export declare const NGX_WEB_COMPONENTS_CONFIG: InjectionToken<Partial<{
/**
* The path that assets will ultimately be served from.
* Default `/assets/`
*/
assetPath: string;
}>>;
export type NgxWebComponentsConfig = Partial<{
/**
* The path that assets will ultimately be served from.
* Default `/assets/`
*/
assetPath: string;
}>;
export type FileSorting = "a-z" | "z-a" | "lastmod" | "firstmod" | "size" | "type";