import { CFCustomTableField } from "../../CommonTypes"; export interface GetCustomTableFieldsParams { tableId: string; } export interface GetCustomTableFieldsResponse { success: boolean; fields: CFCustomTableField[]; timestamp: string; } export type GetCustomTableFields = (params: GetCustomTableFieldsParams) => Promise;