Could someone tell me:
- what type of function is it? Link to deep description?
- how to call that providing both name and value params
private someFunction = (name: string) => (value: number): void => {
//Do some stuff there
};
Thanks in advance!