Recursive Hierarchical Type Structure
JS
S
JavaScriptQuick example of defining a Recursive Hierarchical Type Structure in TypeScript
1export type Classification = { name: string, children: Classification[] };Created on 4/18/2019
Quick example of defining a Recursive Hierarchical Type Structure in TypeScript
1export type Classification = { name: string, children: Classification[] };Created on 4/18/2019