UNPKG

@leosprograms/vf-graphql-holochain

Version:

GraphQL schema bindings for the Holochain implementation of ValueFlows

17 lines (16 loc) 496 B
/** * Resolver callbacks for Unit * * @package: hREA * @since: 2022-08-18 */ import { DNAIdMappings, VfModule, AddressableIdentifier } from '../types.js'; import { Unit } from '@leosprograms/vf-graphql'; declare const _default: (enabledVFModules: VfModule[] | undefined, dnaConfig: DNAIdMappings, conductorUri: string) => { revision: (record: Unit, args: { revisionId: AddressableIdentifier; }) => Promise<Unit>; } | { revision?: undefined; }; export default _default;