You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gristlabs_grist-core/app/server/lib/IChecksumStore.ts

9 lines
309 B

/**
* Interface for storing checksums. Family is a short string, to allow storing
* checksums for different namespaces.
*/
export interface IChecksumStore {
updateChecksum(family: string, key: string, checksum: string): Promise<void>;
getChecksum(family: string, key: string): Promise<string|null>;
}