frontend/src/modelTypes/IUserList.ts

6 lines
163 B
TypeScript

import type {IUserShareBase} from './IUserShareBase'
import type {IList} from './IList'
export interface IUserList extends IUserShareBase {
listId: IList['id']
}