Interface WithSubforums

This is a forum with subforums, but those subforums do NOT have subforums

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

Hierarchy (View Summary)

Properties

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