@leosprograms/vf-graphql-holochain
Version:
GraphQL schema bindings for the Holochain implementation of ValueFlows
29 lines (28 loc) • 854 B
TypeScript
/**
* Resolvers for ProcessSpecification fields
*
* @package: HoloREA
* @since: 2022-07-11
*/
import { DNAIdMappings, VfModule, AddressableIdentifier } from '../types.js';
import { ProcessSpecification } from '@leosprograms/vf-graphql';
declare const _default: (enabledVFModules: VfModule[] | undefined, dnaConfig: DNAIdMappings, conductorUri: string) => ({
resourcesCurrentlyAtStage: () => never;
} | {
resourcesCurrentlyAtStage?: undefined;
}) & ({
commitmentsRequiringStage: () => never;
} | {
commitmentsRequiringStage?: undefined;
}) & ({
conformingProcesses: () => never;
} | {
conformingProcesses?: undefined;
}) & ({
revision: (record: ProcessSpecification, args: {
revisionId: AddressableIdentifier;
}) => Promise<ProcessSpecification>;
} | {
revision?: undefined;
});
export default _default;