// import { MiracleFunction } from "./MiracleFunction.js"; import { StandardResponse } from "./StandardResponse.js"; /** * `MiracleFunction` where the instance is an id of a `Person`. There can be additional context, depending on the function. Example: ```ts const sendMessageToPerson: PersonFunction<{ message: string }> = ( functionContext: FunctionContext, personId: string, context ) => { return { isSuccessful: false, message: "Not implemented yet" }; } ``` // */ // export type PersonFunction = MiracleFunction< // StandardResponse, // string, // TContext // >;*/