feat: add modelTypes
This commit is contained in:
parent
8416b1f448
commit
7d4ba6249e
91 changed files with 751 additions and 513 deletions
7
src/modelTypes/ITotp.ts
Normal file
7
src/modelTypes/ITotp.ts
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import type {IAbstract} from './IAbstract'
|
||||
|
||||
export interface ITotp extends IAbstract {
|
||||
secret: string
|
||||
enabled: boolean
|
||||
url: string
|
||||
}
|
||||
Reference in a new issue