UNPKG

@kamiazya/freebusy

Version:

Determine free blocks from a list of events.

12 lines 479 B
import { Block } from './Block'; import { ScopeTime } from './ScopeTime'; import { BlockISO8601 } from './BlockISO8601'; import { DateTimeInput } from '../utils'; export declare class BlockArray { readonly blocks: Block[]; static days(startDate: DateTimeInput, endDate: DateTimeInput, scope?: ScopeTime): BlockArray; constructor(blocks: Block[]); subtract(subtrahend: Block): BlockArray; toISO8601(): BlockISO8601[]; } //# sourceMappingURL=BlockArray.d.ts.map