UNPKG
get-express-starter
Version:
latest (3.1.0)
3.1.0
3.0.0
2.1.2
2.1.1
2.0.1
1.1.1
1.1.0
1.0.0
0.1.0
Get production ready express boilerplate with a single command
get-express-starter
/
templates
/
express-postgres-prisma
/
src
/
types
/
express.d.ts
9 lines
(7 loc)
•
159 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
type
{
Request
}
from
'express'
;
import
type
{
IUser
}
from
'./index'
;
declare
module
'express'
{
export
interface
Request
{
user
?:
IUser
; } }