UNPKG

@yoroi/common

Version:

The Common package of Yoroi SDK

13 lines (11 loc) 197 B
import {App} from '@yoroi/types' export const cacheRecordMaker = <T>( {expires, hash}: App.CacheInfo, record: T, ): App.CacheRecord<T> => { return { record, expires, hash, } }