| 117 | type ContainerNode = GroupNode | FrameNode | DesignComponent |
| 118 | |
| 119 | export interface DevComponent<T extends object = Record<string, unknown>> { |
| 120 | /** Component tag or name to render. */ |
| 121 | name: string |
| 122 | |
| 123 | /** Props that should be passed to the component. */ |
| 124 | props: T |
| 125 | |
| 126 | /** Ordered child components or string literals. */ |
| 127 | children: (DevComponent | string)[] |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * Syntax highlighting languages that code blocks can declare. |
nothing calls this directly
no outgoing calls
no test coverage detected