UNPKG

@mcastiello/figmatic

Version:

10 lines (9 loc) 535 B
import { FigmaNode } from "./node"; import { type InstanceNodeData, type NodeDefinitionData } from "../types"; export declare class InstanceNode extends FigmaNode<InstanceNodeData> { protected readonly overrideIds: string[] | undefined; get DefaultValues(): NodeDefinitionData<InstanceNodeData>; constructor(data: Record<string, unknown>, parentId?: string); get overrides(): FigmaNode<import("../types").GenericNodeData>[] | undefined; get component(): FigmaNode<import("../types").GenericNodeData> | undefined; }