##// END OF EJS Templates
Added priorities to render tasks, revisited rendering scheduler...
Added priorities to render tasks, revisited rendering scheduler nested `watch` and `watchFor` has a lower priority then they enclosing renditions

File last commit:

r116:aac297dda27d v1.6.0 default
r146:af4f8424e83d v1.9.0 default
Show More
Appointment.ts
20 lines | 441 B | video/mp2t | TypeScriptLexer
import { Contact } from "./Contact";
import { QueryResults } from "@implab/djx/store";
export type AppointmentRole = "organizer" | "speaker" | "participant";
export interface Member extends Contact {
role: AppointmentRole;
}
export interface Appointment {
id: string;
title: string;
startAt: Date;
/** Duration in minutes */
duration: number;
getMembers(role?: AppointmentRole): QueryResults<Member>;
}