This commit is contained in:
sand4rt 2022-10-10 21:46:42 +02:00 коммит произвёл GitHub
Родитель 3a281364d8
Коммит 410b4447c8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 30 добавлений и 10 удалений

8
packages/playwright-ct-react/hooks.d.ts поставляемый
Просмотреть файл

@ -14,5 +14,9 @@
* limitations under the License.
*/
export declare function beforeMount(callback: (params: { hooksConfig: any }) => Promise<void>): void;
export declare function afterMount(callback: (params: { hooksConfig: any }) => Promise<void>): void;
type JsonPrimitive = string | number | boolean | null;
type JsonValue = JsonPrimitive | JsonObject | JsonArray;
type JsonArray = JsonValue[];
type JsonObject = { [Key in string]?: JsonValue };
export declare function beforeMount(callback: (params: { hooksConfig: JsonObject }) => Promise<void>): void;
export declare function afterMount(callback: (params: { hooksConfig: JsonObject }) => Promise<void>): void;

8
packages/playwright-ct-solid/hooks.d.ts поставляемый
Просмотреть файл

@ -14,5 +14,9 @@
* limitations under the License.
*/
export declare function beforeMount(callback: (params: { hooksConfig: any }) => Promise<void>): void;
export declare function afterMount(callback: (params: { hooksConfig: any }) => Promise<void>): void;
type JsonPrimitive = string | number | boolean | null;
type JsonValue = JsonPrimitive | JsonObject | JsonArray;
type JsonArray = JsonValue[];
type JsonObject = { [Key in string]?: JsonValue };
export declare function beforeMount(callback: (params: { hooksConfig: JsonObject }) => Promise<void>): void;
export declare function afterMount(callback: (params: { hooksConfig: JsonObject }) => Promise<void>): void;

8
packages/playwright-ct-svelte/hooks.d.ts поставляемый
Просмотреть файл

@ -16,5 +16,9 @@
import type { SvelteComponent } from "svelte";
export declare function beforeMount(callback: (params: { hooksConfig: any }) => Promise<void>): void;
export declare function afterMount(callback: (params: { hooksConfig: any, svelteComponent: SvelteComponent }) => Promise<void>): void;
type JsonPrimitive = string | number | boolean | null;
type JsonValue = JsonPrimitive | JsonObject | JsonArray;
type JsonArray = JsonValue[];
type JsonObject = { [Key in string]?: JsonValue };
export declare function beforeMount(callback: (params: { hooksConfig: JsonObject }) => Promise<void>): void;
export declare function afterMount(callback: (params: { hooksConfig: JsonObject, svelteComponent: SvelteComponent }) => Promise<void>): void;

8
packages/playwright-ct-vue/hooks.d.ts поставляемый
Просмотреть файл

@ -16,5 +16,9 @@
import { App, ComponentPublicInstance } from 'vue';
export declare function beforeMount(callback: (params: { app: App, hooksConfig: any }) => Promise<void>): void;
export declare function afterMount(callback: (params: { app: App, hooksConfig: any, instance: ComponentPublicInstance }) => Promise<void>): void;
type JsonPrimitive = string | number | boolean | null;
type JsonValue = JsonPrimitive | JsonObject | JsonArray;
type JsonArray = JsonValue[];
type JsonObject = { [Key in string]?: JsonValue };
export declare function beforeMount(callback: (params: { app: App, hooksConfig: JsonObject }) => Promise<void>): void;
export declare function afterMount(callback: (params: { app: App, hooksConfig: JsonObject, instance: ComponentPublicInstance }) => Promise<void>): void;

8
packages/playwright-ct-vue2/hooks.d.ts поставляемый
Просмотреть файл

@ -16,5 +16,9 @@
import { CombinedVueInstance, Vue } from 'vue/types/vue';
export declare function beforeMount(callback: (params: { hooksConfig: any }) => Promise<void>): void;
export declare function afterMount(callback: (params: { hooksConfig: any, instance: CombinedVueInstance<Vue, object, object, object, Record<never, any>> }) => Promise<void>): void;
type JsonPrimitive = string | number | boolean | null;
type JsonValue = JsonPrimitive | JsonObject | JsonArray;
type JsonArray = JsonValue[];
type JsonObject = { [Key in string]?: JsonValue };
export declare function beforeMount(callback: (params: { hooksConfig: JsonObject }) => Promise<void>): void;
export declare function afterMount(callback: (params: { hooksConfig: JsonObject, instance: CombinedVueInstance<Vue, object, object, object, Record<never, any>> }) => Promise<void>): void;