I am trying to add an array as one of my class properties, but I can't seem to find out how.
This is the code that I am currently trying.
export class Foo {
id: number;
value: number;
array: [];
}
I have searched online to try to find the answer with no avail, so I thought I would ask here.