Files
test_server/node_modules/firebase-functions/lib/v2/trace.d.ts
girinb 485098cd1a link
2025-05-29 15:41:51 +09:00

5 lines
221 B
TypeScript

import { CloudEvent } from "./core";
type CloudEventFunction<T> = (raw: CloudEvent<T>) => any | Promise<any>;
export declare function wrapTraceContext<T>(handler: CloudEventFunction<T>): CloudEventFunction<T>;
export {};