I know this is an old question, but I think you can accomplish what you want with the following:
type IData = [string, number, number];
then
var data: IData;
You can see this in this TypeScript Playground example
I know this is an old question, but I think you can accomplish what you want with the following:
type IData = [string, number, number];
then
var data: IData;
You can see this in this TypeScript Playground example