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
args string[] Returns
IResourceWithArgs Adds 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