Hello, i'm trying to create a column with string indexed array,
In the entity :
@Column({
type: 'text',
array: true,
nullable: false,
})
description!: Properties[];
Here is the interface :
export interface Properties {
[key: string]: string;
}
It seems i'm just defining an array of string so far. Tried to search for an example but all I found was some string[] or number[]
Thanks.