import Hashing from './Hashing'; /** * A really terrible hash function. * Here so we can make sure the build process works, mostly. */ export default class ByteCountHashing implements Hashing { protected byteCount: number; reset(): void; update(data: Uint8Array): void; digest(): Uint8Array; static newHashing(): Hashing; }