ngx-mat-lib
Version:
A bunch of utilities and components to use in your Angular 7+ apps!
15 lines (14 loc) • 505 B
TypeScript
import { XmatGenericObject } from "./xmat-generic-object";
import { XmatBreakpointKeys } from "./xmat-breakpoints.model";
declare type XmatBreakpointRef = {
[key in keyof typeof XmatBreakpointKeys]?: number;
};
export interface XmatSummaryConfig<T extends object = any> {
data: T;
columns?: XmatBreakpointRef;
labelsMap?: XmatGenericObject<string>;
noCapitalize?: boolean;
printMap?: XmatGenericObject<(v: any) => string | number>;
props?: string[];
}
export {};