mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-04 17:06:43 +00:00
11 lines
196 B
TypeScript
11 lines
196 B
TypeScript
export const useEeConfig = createSharedComposable(() => {
|
|
const getLimit = (..._args: any[]) => {}
|
|
|
|
const getFeature = (..._args: any[]) => {}
|
|
|
|
return {
|
|
getLimit,
|
|
getFeature,
|
|
}
|
|
})
|