fix: use IAbstract to extend model interface
This commit is contained in:
parent
d36577c04e
commit
8be1f81848
28 changed files with 56 additions and 56 deletions
|
|
@ -1,6 +1,6 @@
|
|||
import AbstractModel from './abstractModel'
|
||||
import AbstractModel, { type IAbstract } from './abstractModel'
|
||||
|
||||
export interface ITotp extends AbstractModel {
|
||||
export interface ITotp extends IAbstract {
|
||||
secret: string
|
||||
enabled: boolean
|
||||
url: string
|
||||
|
|
|
|||
Reference in a new issue