This commit is contained in:
2025-12-03 18:10:00 +08:00
parent f0b75f91e5
commit fc5b6fcc19
2 changed files with 7 additions and 2 deletions

View File

@@ -6,4 +6,6 @@ export * from './meta/index.ts';
export * from './data/upload.ts'; export * from './data/upload.ts';
// 重要的类型定义模块 // 重要的类型定义模块
export type { CreateColumnData, CreateTableData } from './meta/tables.ts'; export type { CreateColumnData, CreateTableData } from './meta/tables.ts';
export type { QueryParams } from './record.ts';

View File

@@ -1,7 +1,10 @@
import { Query } from './api.ts'; import { Query } from './api.ts';
import { Meta } from './meta/index.ts'; import { Meta } from './meta/index.ts';
type QueryParams = { /**
* https://nocodb.com/docs/product-docs/developer-resources/rest-apis#v3-where-query-parameter
*/
export type QueryParams = {
/** /**
* fields=field1,field2 * fields=field1,field2
*/ */