(content: string, injectedProps?: Record<string, string>)
| 303 | * This is fully compatible with the existing DevComponent type. |
| 304 | */ |
| 305 | export function raw(content: string, injectedProps?: Record<string, string>): DevComponent { |
| 306 | return { |
| 307 | name: RAW_TAG_NAME, |
| 308 | props: { content, injectedProps }, |
| 309 | children: [] |
| 310 | } |
| 311 | } |
| 312 | |
| 313 | /** |
| 314 | * Helper to define a TemPad Dev plugin with full type support. |
no outgoing calls
no test coverage detected