6 lines
117 B

import { Status } from './status'
export interface TaskStatusRepository {
get(taskId: string): Promise<Status>
}