1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-03-02 11:42:43 +00:00
Nuxt/test/fixtures/basic/server/api/auto-imports.ts

8 lines
154 B
TypeScript
Raw Normal View History

export default defineEventHandler(() => {
return {
thisIs: autoimportedFunction(),
autoImported: someUtils,
fromServerDir: testUtils
}
})