import { TRawManifest } from '../src/types';
// pass type if your define your specific context helpers
const manifest: TRawManifest<TContextHelpers> = {
path: ['$test-operation'],
handler: async (context) => {
context.greet('Alice'); // your specific context helper
return { resource: { work: true } };