Skip to content

Commit 52baa14

Browse files
authored
build: sync g3 change (#25845)
Adds a change that is present in g3, but not externally.
1 parent 7456712 commit 52baa14

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/cdk/testing/test-element.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export type EventData =
2121
| string
2222
| number
2323
| boolean
24+
| Function
2425
| undefined
2526
| null
2627
| EventData[]

tools/public_api_guard/cdk/testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export interface ElementDimensions {
7676
}
7777

7878
// @public
79-
export type EventData = string | number | boolean | undefined | null | EventData[] | {
79+
export type EventData = string | number | boolean | Function | undefined | null | EventData[] | {
8080
[key: string]: EventData;
8181
};
8282

0 commit comments

Comments
 (0)