export interface ISpliceable { splice(start: number, deleteCount: number, toInsert: readonly T[]): void; }