1
0
Fork 0
mirror of synced 2024-06-30 12:00:31 +12:00
budibase/packages/server/src/sdk/index.ts

14 lines
245 B
TypeScript
Raw Normal View History

import { default as backups } from "./app/backups"
import { default as tables } from "./app/tables"
const toExport = {
backups,
tables,
}
// default export for TS
export default toExport
// default export for JS
module.exports = toExport