Interface ReportSetupTranslations

interface ReportSetupTranslations {
    custom: {
        label: string;
        [customKeys: string]: any;
    };
    factSheetTypes: {
        [key: string]: string;
    };
    fields: {
        [factSheetType: string]: FactSheetFieldsTranslation;
    };
    relations: {
        [relationName: string]: RelationTranslation;
    };
}

Properties

custom: {
    label: string;
    [customKeys: string]: any;
}

The reports custom translation for the current language.

Type declaration

  • [customKeys: string]: any
  • label: string
factSheetTypes: {
    [key: string]: string;
}

Type declaration

  • [key: string]: string
fields: {
    [factSheetType: string]: FactSheetFieldsTranslation;
}

Type declaration

relations: {
    [relationName: string]: RelationTranslation;
}

Type declaration

Generated using TypeDoc