IResourceWithArgs
Interface
interface IResourceWithArgs { withArgs(args: string[]): IResourceWithArgs; withArgsCallback(callback: (obj: CommandLineArgsCallbackContext) => Promise<void>): IResourceWithArgs;}Methods
Adds arguments to be passed to a resource that supports arguments when it is launched.
withArgs(args: string[]): IResourceWithArgsParameters
argsstring[]Returns
IResourceWithArgsAdds a callback to be executed with a list of command-line arguments when a resource is started.
withArgsCallback(callback: (obj: CommandLineArgsCallbackContext) => Promise<void>): IResourceWithArgsParameters
callback(obj: CommandLineArgsCallbackContext) => Promise<void>Returns
IResourceWithArgs