Type Alias DiffExpandState

DiffExpandState: {
    type: Exclude<DiffExpandStateType, Expanding>;
} | {
    progress: [number, number];
    type: Expanding;
}