* adding typeorm to api * switching to sqlite * switching to sqlite * switching to sqlite * migrating to sqlite * updating terraform * updating infrastructure
11 lines
265 B
TypeScript
11 lines
265 B
TypeScript
import '@tanstack/react-table';
|
|
|
|
/* eslint-disable */
|
|
declare module '@tanstack/react-table' {
|
|
interface ColumnMeta<TData extends RowData, TValue> {
|
|
align?: 'left' | 'center' | 'right';
|
|
headerAlign?: 'left' | 'center' | 'right';
|
|
}
|
|
}
|
|
/* eslint-enable */
|