UNPKG

@cucumber/cucumber

Version:

The official JavaScript implementation of Cucumber.

13 lines (12 loc) 357 B
import { DefineStepPattern, IDefineStepOptions } from './types'; interface IDefineStepArguments { pattern?: DefineStepPattern; options?: IDefineStepOptions; code?: Function; } export default function validateArguments({ args, fnName, location, }: { args?: IDefineStepArguments; fnName: string; location: string; }): void; export {};