Skip to content

Commit

Permalink
chore: update .api-reports
Browse files Browse the repository at this point in the history
  • Loading branch information
sf-twingate committed Apr 26, 2024
1 parent a76bb95 commit 442f7f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .api-reports/api-report-testing.md
Expand Up @@ -1553,7 +1553,7 @@ interface Resolvers {
}

// @public (undocumented)
export type ResultFunction<T, V = Record<string, any>> = (variables: V) => T;
export type ResultFunction<T, V = Record<string, any>> = <_V extends V = V>(variables: _V) => T;

// @public (undocumented)
type SafeReadonly<T> = T extends object ? Readonly<T> : T;
Expand Down Expand Up @@ -1698,7 +1698,7 @@ interface UriFunction {
}

// @public (undocumented)
type VariableMatcher<V = Record<string, any>> = (variables: V) => boolean;
type VariableMatcher<V = Record<string, any>> = <_V extends V = V>(variables: _V) => boolean;

// @public (undocumented)
export function wait(ms: number): Promise<void>;
Expand Down
4 changes: 2 additions & 2 deletions .api-reports/api-report-testing_core.md
Expand Up @@ -1510,7 +1510,7 @@ interface Resolvers {
}

// @public (undocumented)
export type ResultFunction<T, V = Record<string, any>> = (variables: V) => T;
export type ResultFunction<T, V = Record<string, any>> = <_V extends V = V>(variables: _V) => T;

// @public (undocumented)
type SafeReadonly<T> = T extends object ? Readonly<T> : T;
Expand Down Expand Up @@ -1655,7 +1655,7 @@ interface UriFunction {
}

// @public (undocumented)
type VariableMatcher<V = Record<string, any>> = (variables: V) => boolean;
type VariableMatcher<V = Record<string, any>> = <_V extends V = V>(variables: _V) => boolean;

// @public (undocumented)
export function wait(ms: number): Promise<void>;
Expand Down

0 comments on commit 442f7f6

Please sign in to comment.