When working with TypeScript, I often define an array containing a number and string like so:
type A = [number, string]
Recently, I started using Immutable.js. How can I redefine this type using an Immutable List?
Would it be something along these lines:
import { List } from 'immutable';
type A = List<[number, string]>