chore: remove unused tyoe

This commit is contained in:
Rui Figueira 2024-10-14 23:22:46 +01:00
parent 68103850e3
commit ece3c3ae57
2 changed files with 0 additions and 8 deletions

View file

@ -31,10 +31,6 @@ export type ReporterDescription = Readonly<
[string] | [string, any] [string] | [string, any]
>; >;
type DeepPartial<T> = {
[P in keyof T]?: DeepPartial<T[P]>
}
type UseOptions<TestArgs, WorkerArgs> = Partial<WorkerArgs> & Partial<TestArgs>; type UseOptions<TestArgs, WorkerArgs> = Partial<WorkerArgs> & Partial<TestArgs>;
/** /**

View file

@ -30,10 +30,6 @@ export type ReporterDescription = Readonly<
[string] | [string, any] [string] | [string, any]
>; >;
type DeepPartial<T> = {
[P in keyof T]?: DeepPartial<T[P]>
}
type UseOptions<TestArgs, WorkerArgs> = Partial<WorkerArgs> & Partial<TestArgs>; type UseOptions<TestArgs, WorkerArgs> = Partial<WorkerArgs> & Partial<TestArgs>;
interface TestProject<TestArgs = {}, WorkerArgs = {}> { interface TestProject<TestArgs = {}, WorkerArgs = {}> {