ngx-t-reports
Version:
Angular module for creating dynamic reports and dashboards. Supports various data sources, custom templates, and real-time updates.
19 lines (18 loc) • 529 B
TypeScript
import { ElementEditorConfigSectionInterface } from "ngx-t-forms-types";
export declare enum ConfigTypes {
SheetConfig = "SheetConfig"
}
export declare const SheetConfig: ElementEditorConfig;
export interface ElementEditorConfig {
label: string;
subTitle: string;
saveButtonLabel: string;
editorSections: ElementEditorConfigSectionInterface[];
}
export declare const REPORT_SHEET_SIDE_MENU_OPTIONS: {
title: string;
subTitle: string;
config: ConfigTypes;
icon: string;
color: string;
}[];