This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/models/teamList.ts

17 lines
325 B
TypeScript

import TeamShareBaseModel from './teamShareBase'
import type { IList } from './list'
export interface ITeamList {
listId: IList['id']
}
export default class TeamListModel extends TeamShareBaseModel implements ITeamList {
declare listId: IList['id']
defaults() {
return {
...super.defaults(),
listId: 0,
}
}
}