How to define an array of strings in TypeScript interface?
Solution 1:
interface Addressable {
address: string[];
}
Solution 2:
An array is a special type of data type which can store multiple values of different data types sequentially using a special syntax.
TypeScript supports arrays, similar to JavaScript. There are two ways to declare an array:
- Using square brackets. This method is similar to how you would declare arrays in JavaScript.
let fruits: string[] = ['Apple', 'Orange', 'Banana'];
- Using a generic array type, Array.
let fruits: Array<string> = ['Apple', 'Orange', 'Banana'];
Both methods produce the same output.
Of course, you can always initialize an array like shown below, but you will not get the advantage of TypeScript's type system.
let arr = [1, 3, 'Apple', 'Orange', 'Banana', true, false];
Source
Solution 3:
It's simple as this:
address: string[]
Solution 4:
Or:
{ address: Array<string> }