trustgraph/ts/packages/base/src/processor/index.ts

23 lines
503 B
TypeScript
Raw Normal View History

2026-05-12 08:06:58 -05:00
export {
AsyncProcessor,
type ConfigHandler,
type EffectConfigHandler,
type ProcessorConfig,
} from "./async-processor.js";
2026-04-05 21:09:33 -05:00
export { FlowProcessor } from "./flow-processor.js";
2026-05-12 08:06:58 -05:00
export {
Flow,
type FlowConsumer,
type FlowDefinition,
type FlowProducer,
type FlowRequestOptions,
type FlowRequestor,
} from "./flow.js";
export {
makeAsyncProcessorProgram,
makeFlowProcessorProgram,
makeProcessorProgram,
runProcessorScoped,
type ProcessorProgramOptions,
} from "./program.js";