chore(ct): revert export mount result (#29070)

This commit is contained in:
Sander 2024-01-19 20:11:23 +01:00 committed by GitHub
parent e551506c9e
commit 54c57fdebe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,7 +22,7 @@ export interface MountOptions<HooksConfig extends JsonObject> {
hooksConfig?: HooksConfig;
}
export interface MountResult extends Locator {
interface MountResult extends Locator {
unmount(): Promise<void>;
update(component: JSX.Element): Promise<void>;
}