47a8a15598
# Introduction Creating dedicated folders and module for both `page-layout-tab` and `page-layout-widget` The addition diff with deletion is due to the module being added
12 lines
275 B
TypeScript
12 lines
275 B
TypeScript
import { registerEnumType } from '@nestjs/graphql';
|
|
|
|
export enum BarChartGroupMode {
|
|
STACKED = 'STACKED',
|
|
GROUPED = 'GROUPED',
|
|
}
|
|
|
|
registerEnumType(BarChartGroupMode, {
|
|
name: 'BarChartGroupMode',
|
|
description: 'Display mode for bar charts with secondary grouping',
|
|
});
|