Skip to content

Commit f1e6fca

Browse files
authored
fix(typings): wrong defineParameterType (#4548)
1 parent 0275acb commit f1e6fca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

typings/index.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ declare const xScenario: CodeceptJS.IScenario;
554554
declare const xFeature: CodeceptJS.IFeature;
555555
declare function Data(data: any): CodeceptJS.IData;
556556
declare function xData(data: any): CodeceptJS.IData;
557-
declare function defineParameterType(options: CodeceptJS.IParameterTypeDefinition<any>): void
557+
declare function DefineParameterType(options: CodeceptJS.IParameterTypeDefinition<any>): void
558558

559559
// Hooks
560560
declare const BeforeSuite: CodeceptJS.IHook;
@@ -599,7 +599,7 @@ declare namespace NodeJS {
599599
Given: typeof Given;
600600
When: typeof When;
601601
Then: typeof Then;
602-
DefineParameterType: typeof defineParameterType
602+
DefineParameterType: typeof DefineParameterType
603603
}
604604
}
605605

0 commit comments

Comments
 (0)