Interface WithSubforums2

This is a forum with subforums, those subforums also have subforums, which in turn do not have subforums

interface WithSubforums2 {
    description: string;
    id: number;
    name: string;
    subforums: WithSubforums[];
}

Hierarchy (View Summary)

Properties

description: string
id: number
name: string
subforums: WithSubforums[]