Skip to content

Commit d1af15d

Browse files
committed
Remove TODOs, update comments to look better on reference docs page.
1 parent 0a2d5ee commit d1af15d

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/v2/options.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ export function getGlobalOptions(): GlobalOptions {
260260
* Additional fields that can be set on any event-handling function.
261261
*/
262262
export interface EventHandlerOptions extends Omit<GlobalOptions, "enforceAppCheck"> {
263-
/** Type of the event. Valid values are TODO */
263+
/** Type of the event. */
264264
eventType?: string;
265265

266266
/**
@@ -274,10 +274,9 @@ export interface EventHandlerOptions extends Omit<GlobalOptions, "enforceAppChec
274274
/**
275275
* Filters events based on path pattern matching on the CloudEvents attributes.
276276
*
277-
* Similar to eventFilters, but supports wildcard patterns for flexible matching:
278-
* - `*` matches any single path segment
279-
* - `**` matches zero or more path segments
280-
* - `{param}` captures a path segment as a parameter
277+
* Similar to eventFilters, but supports wildcard patterns for flexible matching where `*` matches
278+
* any single path segment, `**` matches zero or more path segments, and `{param}` captures a path segment
279+
* as a parameter
281280
*/
282281
eventFilterPathPatterns?: Record<string, string | Expression<string>>;
283282

0 commit comments

Comments
 (0)