// Type definitions for fossil-delta 0.2.5
// Project: https://github.com/dchest/fossil-delta-js
// Definitions by: Endel Dreyer
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
///
declare module "fossil-delta" {
type ByteArray = Array | Uint8Array | Buffer;
export function create(origin: ByteArray, target: ByteArray): Array;
export function apply(origin: ByteArray, delta: Array): Array;
export function outputSize(delta: Array): number;
}