UNPKG

@yoroi/types

Version:
20 lines (18 loc) 349 B
/** * Flowtype definitions for cache * Generated by Flowgen from a Typescript Definition * Flowgen v1.21.0 */ export type AppCacheInfo = { expires: number, hash: string, ... }; export type AppCacheRecord<T> = { record: T, ... } & AppCacheInfo; export type AppCacheRow<T, K: string = string> = { key: K, ... } & AppCacheRecord<T>;