10 lines
217 B
TypeScript
10 lines
217 B
TypeScript
import { FeatureIdentifier } from '@standardnotes/features'
|
|
|
|
type ChecksumEntry = {
|
|
version: string
|
|
base64: string
|
|
binary: string
|
|
}
|
|
|
|
export type ComponentChecksumsType = Record<FeatureIdentifier, ChecksumEntry>
|