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 04c920c commit 7738451Copy full SHA for 7738451
common/api-review/rules-unit-testing.api.md
@@ -16,13 +16,14 @@ export function assertSucceeds<T>(pr: Promise<T>): Promise<T>;
16
// @public
17
export type EmulatorConfig = {
18
rules?: string;
19
-} & (HostAndPort | {});
+ endpoint?: HostAndPort;
20
+};
21
22
-export interface HostAndPort {
23
+export type HostAndPort = {
24
host: string;
25
port: number;
-}
26
27
28
29
export function initializeTestEnvironment(config: TestEnvironmentConfig): Promise<RulesTestEnvironment>;
0 commit comments