proposit-core
    Preparing search index...

    Interface THierarchicalChecksummable<TCollectionName>

    An entity that can produce hierarchical content checksums: meta (entity-only), descendant (children), and combined (both).

    interface THierarchicalChecksummable<TCollectionName extends string = string> {
        checksum(): string;
        combinedChecksum(): string;
        descendantChecksum(): string | null;
        flushChecksums(): void;
        getCollectionChecksum(name: TCollectionName): string | null;
    }

    Type Parameters

    • TCollectionName extends string = string

    Implemented by

    Index

    Methods