import { Entity } from '@loopback/repository'; export declare class Todo extends Entity { id?: number; title: string; desc?: string; isComplete?: boolean; remindAtAddress?: string; remindAtGeo?: string; tag?: any; constructor(data?: Partial); } export interface TodoRelations { } export type TodoWithRelations = Todo & TodoRelations;