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