log
Inserts console.log(")
console.log('Class: $CLASS$, Function: $FUNCTION$, Line $LINE$ $PARAM_TEXT$($EXPECTED$): ',
$PARAM$);$END$
| function useTaskQueue(params: { | |
| shouldProcess: boolean | |
| }): { | |
| tasks: ReadonlyArray<Task> | |
| isProcessing: boolean | |
| addTask: (task: Task) => void | |
| } { | |
| const [queue, setQueue] = React.useState<{ | |
| isProcessing: boolean | |
| tasks: Array<Task> |