IResourceWithArgs
Interface
interface IResourceWithArgs { withArgs(args: string[]): IResourceWithArgs; withArgsCallback(callback: (obj: CommandLineArgsCallbackContext) => void): IResourceWithArgs; withArgsCallbackAsync(callback: (arg: CommandLineArgsCallbackContext) => void): IResourceWithArgs;}Methods
Adds arguments
withArgs(args: string[]): IResourceWithArgsParameters
args string[] Returns
IResourceWithArgs Sets command-line arguments via callback
withArgsCallback(callback: (obj: CommandLineArgsCallbackContext) => void): IResourceWithArgsParameters
callback (obj: CommandLineArgsCallbackContext) => void Returns
IResourceWithArgs Sets command-line arguments via async callback
withArgsCallbackAsync(callback: (arg: CommandLineArgsCallbackContext) => void): IResourceWithArgsParameters
callback (arg: CommandLineArgsCallbackContext) => void Returns
IResourceWithArgs