UNPKG

officekit

Version:

A toolkit to represent and visualize office spaces. It also provides functionality to simulate usage of offices, and calculate a score given a fitness function. It also have functionatlity for automatic allocation of offices using a genetic algorithm.

9 lines (8 loc) 227 B
import type { Person } from '$lib/people/Person'; import type { Team } from '$lib/people/Team'; export declare class Reservation { seatId: number; people: Person[]; teams: Team[]; constructor(seatId: number); }