query.querycachelookup
Home > @blaze-cardano/query > QueryCacheLookup
QueryCacheLookup type
Signature:
export type QueryCacheLookup<V> = {
hit: true;
value: V;
} | {
hit: false;
value?: undefined;
};
Home > @blaze-cardano/query > QueryCacheLookup
Signature:
export type QueryCacheLookup<V> = {
hit: true;
value: V;
} | {
hit: false;
value?: undefined;
};