7 lines
132 B
TypeScript
7 lines
132 B
TypeScript
import type { TableConfig } from '../types'
|
|
|
|
export const clientesConfig: TableConfig = {
|
|
table: 'clientes',
|
|
primaryKey: 'id'
|
|
}
|