import { Entity } from '@loopback/repository'; import { TodoListWithRelations } from './todo-list.model'; export declare class TodoListImage extends Entity { id?: number; value: string; todoListId: number; constructor(data?: Partial); } export interface TodoListImageRelations { todoList?: TodoListWithRelations; } export type TodoListImageWithRelations = TodoListImage & TodoListImageRelations;