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