Correct default config types

This commit is contained in:
ppetzold 2020-06-27 09:33:54 +02:00
parent 91d4fe52f5
commit 6bdbd27ec4

View File

@ -130,7 +130,7 @@ export class CatsController {
const paginateConfig: PaginateConfig<CatEntity> { const paginateConfig: PaginateConfig<CatEntity> {
/** /**
* Required: true (must have a minimum of one column) * Required: true (must have a minimum of one column)
* Type: keyof CatEntity * Type: (keyof CatEntity)[]
* Description: These are the columns that are valid to be sorted by. * Description: These are the columns that are valid to be sorted by.
*/ */
sortableColumns: ['id', 'name', 'color'], sortableColumns: ['id', 'name', 'color'],
@ -145,7 +145,7 @@ const paginateConfig: PaginateConfig<CatEntity> {
/** /**
* Required: false * Required: false
* Type: [string, 'ASC' | 'DESC'][] * Type: [keyof CatEntity, 'ASC' | 'DESC'][]
* Default: [[sortableColumns[0], 'ASC]] * Default: [[sortableColumns[0], 'ASC]]
* Description: The order to display the sorted entities. * Description: The order to display the sorted entities.
*/ */