1
0

fix: use IAbstract to extend model interface

This commit is contained in:
Dominik Pschenitschni
2022-08-14 12:15:09 +02:00
parent d36577c04e
commit 8be1f81848
28 changed files with 56 additions and 56 deletions

View File

@ -1,6 +1,6 @@
import AbstractModel from '@/models/abstractModel'
import AbstractModel, { type IAbstract } from '@/models/abstractModel'
export interface IPasswordUpdate extends AbstractModel {
export interface IPasswordUpdate extends IAbstract {
newPassword: string
oldPassword: string
}