1
2
3
4
5
6
7
8
9
10
11
12
| import { BlockMap } from "builder-util-runtime/out/blockMapApi";
| import { Logger } from "../main";
| export declare enum OperationKind {
| COPY = 0,
| DOWNLOAD = 1
| }
| export interface Operation {
| kind: OperationKind;
| start: number;
| end: number;
| }
| export declare function computeOperations(oldBlockMap: BlockMap, newBlockMap: BlockMap, logger: Logger): Array<Operation>;
|
|