Skip to content

Commit

Permalink
Update API reports
Browse files Browse the repository at this point in the history
  • Loading branch information
dlarocque committed Oct 10, 2024
1 parent 04c920c commit 7738451
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions common/api-review/rules-unit-testing.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,14 @@ export function assertSucceeds<T>(pr: Promise<T>): Promise<T>;
// @public
export type EmulatorConfig = {
rules?: string;
} & (HostAndPort | {});
endpoint?: HostAndPort;
};

// @public
export interface HostAndPort {
export type HostAndPort = {
host: string;
port: number;
}
};

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

0 comments on commit 7738451

Please sign in to comment.