@yoroi/types
Version:
The Yoroi Types package of Yoroi SDK
20 lines (18 loc) • 349 B
Flow
/**
* 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>;