eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
14 lines (13 loc) • 506 B
TypeScript
import type { InstrumentationDefinition } from "#public/instrumentation/index.js";
/**
* Registers the authored instrumentation config and awaits its `setup`
* callback.
*
* Called once by the generated instrumentation Nitro plugin at server
* startup. Subsequent calls overwrite the previous value.
*
* @internal — not part of the public API.
*/
export declare function registerInstrumentationConfig(config: InstrumentationDefinition, input: {
readonly agentName: string;
}): Promise<void>;