Skip to content
This repository has been archived by the owner on Apr 19, 2023. It is now read-only.

Commit

Permalink
🏷️ Use import type in auth.interface.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
AnandChowdhary committed Nov 15, 2020
1 parent 83185a9 commit 0653b2a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/modules/auth/auth.interface.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { Request as NestRequest } from '@nestjs/common';
import { MfaMethod } from '@prisma/client';
import { Request as ExpressRequest } from 'express';
import type { Request as NestRequest } from '@nestjs/common';
import type { Request as ExpressRequest } from 'express';

export type MfaMethod = 'NONE' | 'SMS' | 'TOTP' | 'EMAIL';

export interface AccessTokenClaims {
id: number;
Expand Down

0 comments on commit 0653b2a

Please sign in to comment.