Skip to content

Commit c27254f

Browse files
committed
Update API reports
1 parent e7b9b12 commit c27254f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

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

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

2221
// @public
23-
export type HostAndPort = {
22+
export interface HostAndPort {
2423
host: string;
2524
port: number;
26-
};
25+
}
2726

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

0 commit comments

Comments
 (0)