Files
nocodb/packages/nc-gui/composables/useEeConfig.ts
2025-04-05 18:36:56 +03:00

11 lines
196 B
TypeScript

export const useEeConfig = createSharedComposable(() => {
const getLimit = (..._args: any[]) => {}
const getFeature = (..._args: any[]) => {}
return {
getLimit,
getFeature,
}
})