13 lines
335 B
TypeScript
13 lines
335 B
TypeScript
/* eslint-disable import/prefer-default-export */
|
|
import type { ElementsRow } from '../../lib/renderFormComponent';
|
|
|
|
export const id = 'payments';
|
|
export const title = 'Платежи';
|
|
|
|
export const elements: ElementsRow['0'] = [
|
|
'radioGraphType',
|
|
'selectSeasonType',
|
|
'tbxParmentsDecreasePercent',
|
|
'selectHighSeasonStart',
|
|
];
|