Answers for "typescript type from array"

1

typescript array

// let arr_name, elemType[];
let list: number[] = [1, 2, 3];
// Generic array type, Array<elemType>:
let list: Array<number> = [1, 2, 3];
Posted by: Guest on April-24-2021
5

typescript array

let list: number[] = [1, 2, 3];
Posted by: Guest on March-04-2020
0

typescript type from array

const animals = ['cat', 'dog', 'mouse'] as const
type Animal = typeof animals[number]

// type Animal = 'cat' | 'dog' | 'mouse'
Posted by: Guest on May-01-2021
0

create type as values of list typescript

// You can create your list as enums
enum statuses {
  SETUP,
  STARTED,
  FINISHED
}

// Creates known string type
// 'SETUP' | 'STARTED' | 'FINISHED'
type StatusString = keyof typeof statuses

// JobStatus.status must match 'SETUP' | 'STARTED' | 'FINISHED'
export type JobStatus = {
  status: StatusString
}
Posted by: Guest on February-08-2021
-2

array in typescript

const count = [...Array(5)];
count.map((_) => console.log('hi'));
Posted by: Guest on August-10-2020

Code answers related to "typescript type from array"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language