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'
| 'mariadb'
| 'sqlite'
| MysqlUi
| MssqlUi
| SnowflakeUi
| PgUi
| OracleUi;
| typeof MysqlUi
| typeof MssqlUi
| typeof SnowflakeUi
| typeof PgUi
| typeof OracleUi;
getMeta?: (tableId: string) => Promise<any>;
}) {
const colAliasToColMap = {};

Loading…
Cancel
Save