UNPKG

@valueflows/vf-graphql-holochain

Version:

GraphQL schema bindings for the Holochain implementation of ValueFlows

12 lines (11 loc) 634 B
export declare const entryLookup: Record<string, any>; export declare function getEntryFromStore(hash: string): any; export declare function addEntryToStore(hash: string, entry: any): void; export declare function removeEntryFromStore(hash: string): void; export declare const recentlyFetchedRevisionIds: Record<string, { revisionId: string; timestamp: number; }>; export declare function getLatestRevisionId(hash: string, passedSeconds: number): string | null; export declare function getLastUpdateTime(hash: string): number | null; export declare function updateLatestRevision(originalId: string, revisionId: string): void;