Skip to content

Commit 51098f1

Browse files
committed
chore: initial commit
0 parents  commit 51098f1

File tree

8 files changed

+2710
-0
lines changed

8 files changed

+2710
-0
lines changed

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
node_modules
2+
coverage
3+
.DS_STORE
4+
.nyc_output
5+
.idea
6+
.vscode/
7+
*.sublime-project
8+
*.sublime-workspace
9+
*.log
10+
build
11+
dist
12+
yarn.lock
13+
shrinkwrap.yaml

index.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
declare module '@ioc:Adonis/Core/AsyncHttpContext' {
2+
import { HttpContextContract } from '@ioc:Adonis/Core/HttpContext'
3+
4+
const AsyncHttpContext: HttpContextContract
5+
export default AsyncHttpContext
6+
}

0 commit comments

Comments
 (0)