feat: extend mode interface from class instead from interface
This commit is contained in:
parent
80eaf38090
commit
a6b96f857d
33 changed files with 40 additions and 41 deletions
|
|
@ -1,9 +1,9 @@
|
|||
import AbstractModel, { type IAbstract } from './abstractModel'
|
||||
import AbstractModel from './abstractModel'
|
||||
import ListModel, { type IList } from './list'
|
||||
import UserModel, { type IUser } from './user'
|
||||
import SubscriptionModel, { type ISubscription } from '@/models/subscription'
|
||||
|
||||
export interface INamespace extends IAbstract {
|
||||
export interface INamespace extends AbstractModel {
|
||||
id: number
|
||||
title: string
|
||||
description: string
|
||||
|
|
|
|||
Reference in a new issue