budibase/packages/server/src/sdk/app/rows/index.ts

16 lines
318 B
TypeScript

import * as attachments from "./attachments"
import * as rows from "./rows"
import * as search from "./search"
import * as utils from "./utils"
import * as external from "./external"
import AliasTables from "./sqlAlias"
export default {
...attachments,
...rows,
...search,
utils,
external,
AliasTables,
}