We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5877d99 commit 97dca88Copy full SHA for 97dca88
src/discovery/index.ts
@@ -1,5 +1,16 @@
1
import { CloudEventV1Service } from "../";
2
3
+interface RequestHandler {
4
+ (
5
+ req: { query: { matching: string }; url: string },
6
+ res: {
7
+ end: () => void;
8
+ status: (
9
+ code: number,
10
+ ) => { json: (obj: Record<string, unknown> | CloudEventV1Service[]) => string; end: () => void };
11
+ },
12
+ ): void;
13
+}
14
/**
15
* DiscoveryService to implement the discovery spec:
16
*
0 commit comments