Skip to content

Commit 7738451

Browse files
committed
Update API reports
1 parent 04c920c commit 7738451

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

common/api-review/rules-unit-testing.api.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,14 @@ export function assertSucceeds<T>(pr: Promise<T>): Promise<T>;
1616
// @public
1717
export type EmulatorConfig = {
1818
rules?: string;
19-
} & (HostAndPort | {});
19+
endpoint?: HostAndPort;
20+
};
2021

2122
// @public
22-
export interface HostAndPort {
23+
export type HostAndPort = {
2324
host: string;
2425
port: number;
25-
}
26+
};
2627

2728
// @public
2829
export function initializeTestEnvironment(config: TestEnvironmentConfig): Promise<RulesTestEnvironment>;

0 commit comments

Comments
 (0)