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