mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
9 lines
309 B
TypeScript
9 lines
309 B
TypeScript
|
/**
|
||
|
* 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>;
|
||
|
}
|