function returnsArgsView codereturnsArgs<Args extends unknown[], Self = any>(start?,end?: number): (this: Self,...args: Args) => ArgsCreates a function that returns its arguments or a subset of them. If end is specified, it will return arguments up to but not including the end. Type ParametersArgs extends unknown[]View codeSelf = anyView codeParametersoptionalstartView codeoptionalend: numberView codeReturn Type(this: Self,...args: Args) => ArgsView code