You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import type { IActor } from "./actor";
|
|
import type { Paginate } from "./paginate";
|
|
import type { ITodo } from "./todos";
|
|
|
|
export interface ITodoList {
|
|
id: string;
|
|
title: string;
|
|
todos: Paginate<ITodo>;
|
|
actor?: IActor;
|
|
}
|