'Array dataType in strapi.js

I have my folder array as

export interface FolderProps {
    name: string;
    links: LinkFolderProps[];
}
export interface LinkFolderProps {
    title: string;
    url: string;
}

so now what do I select in the content-type-builder in my strapi app? so that every user has a folder collection with an array datatype.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source