UNPKG

@benev/praxis

Version:
13 lines (8 loc) 220 B
import {Content} from "@benev/slate" import {Task} from "./task.js" export class LoadingOperation { tasks: Set<Task> constructor(tasks: Task[], public newRender: () => Content) { this.tasks = new Set(tasks) } }