Skip to content

Commit

Permalink
fix(typings): wrong defineParameterType (#4548)
Browse files Browse the repository at this point in the history
  • Loading branch information
kobenguyent authored Nov 10, 2024
1 parent 0275acb commit f1e6fca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions typings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ declare const xScenario: CodeceptJS.IScenario;
declare const xFeature: CodeceptJS.IFeature;
declare function Data(data: any): CodeceptJS.IData;
declare function xData(data: any): CodeceptJS.IData;
declare function defineParameterType(options: CodeceptJS.IParameterTypeDefinition<any>): void
declare function DefineParameterType(options: CodeceptJS.IParameterTypeDefinition<any>): void

// Hooks
declare const BeforeSuite: CodeceptJS.IHook;
Expand Down Expand Up @@ -599,7 +599,7 @@ declare namespace NodeJS {
Given: typeof Given;
When: typeof When;
Then: typeof Then;
DefineParameterType: typeof defineParameterType
DefineParameterType: typeof DefineParameterType
}
}

Expand Down

0 comments on commit f1e6fca

Please sign in to comment.