The input value to store.
Optionalparams: { Optional parameters object
Optionalallow?: boolean | ((index: number, name: string, value: any) => any)A function or value to allow tracing the input. allow is called before name. If it returns a boolean, it will allow or disallow respectively. Otherwise it will display the allow result instead of the input value.
Optionallevel?: numberThe level number to be used when there is more than one d__
within the same expression or function.
Defaults to 0.
Optionalname?: string | ((index: number, allowIndex: number, value: any) => string)The
name of the input.
Defaults to i%d where %d is the number of inputs for the thread.
The input value
Captures the input value for the current thread.
If no name is provided, it generates a default name.
Example