create shared library

This commit is contained in:
rubikscraft
2022-02-24 22:56:27 +01:00
parent 5f700a3374
commit 825b2856bb
40 changed files with 2501 additions and 4066 deletions

View File

@@ -0,0 +1,6 @@
import { FastifyRequest } from 'fastify';
import { User } from '../../../collections/userdb/user.dto';
export default interface AuthFasityRequest extends FastifyRequest {
user: User;
}