UNPKG

@mcastiello/figmatic

Version:

10 lines (9 loc) 309 B
import type { ParsedComponent } from "../../types"; export declare class ParsedNode { private readonly data; private readonly childrenIds; constructor(data: ParsedComponent, childrenIds: string[]); get children(): ParsedNode[]; get name(): string; get definition(): ParsedComponent; }