hashbrown

RuntimeFunctionRef

A reference to a function in the runtime.

API

export type RuntimeFunctionRef<Args, Result> = {
  name: string;
  description: string;
  args?:  s.HashbrownType ;
  result?:  s.HashbrownType ;
  handler: (
    args: Args,
    abortSignal:  AbortSignal ,
  ) => Result |  Promise <Result>;
};
RuntimeFunctionRef
@typeArgs
@typeResult