Browse Source

fix: type definition correction

pull/7268/head
Pranav C 10 months ago
parent
commit
59e5ba83bd
  1. 10
      packages/nocodb-sdk/src/lib/formulaHelpers.ts

10
packages/nocodb-sdk/src/lib/formulaHelpers.ts

@ -1202,11 +1202,11 @@ export function validateFormulaAndExtractTreeWithType({
| 'oracledb' | 'oracledb'
| 'mariadb' | 'mariadb'
| 'sqlite' | 'sqlite'
| MysqlUi | typeof MysqlUi
| MssqlUi | typeof MssqlUi
| SnowflakeUi | typeof SnowflakeUi
| PgUi | typeof PgUi
| OracleUi; | typeof OracleUi;
getMeta?: (tableId: string) => Promise<any>; getMeta?: (tableId: string) => Promise<any>;
}) { }) {
const colAliasToColMap = {}; const colAliasToColMap = {};

Loading…
Cancel
Save