chore: export MatcherReturnType type (#30139)

Fixes https://github.com/microsoft/playwright/issues/30131
This commit is contained in:
Pavel Feldman 2024-03-27 08:33:00 -07:00 committed by GitHub
parent 352609c44f
commit 5912362089
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -7033,7 +7033,7 @@ export type ExpectMatcherState = {
utils: ExpectMatcherUtils;
};
type MatcherReturnType = {
export type MatcherReturnType = {
message: () => string;
pass: boolean;
name?: string;

View file

@ -409,7 +409,7 @@ export type ExpectMatcherState = {
utils: ExpectMatcherUtils;
};
type MatcherReturnType = {
export type MatcherReturnType = {
message: () => string;
pass: boolean;
name?: string;