(result: { readonly raw: unknown })
| 75 | const uniqueSuffix = () => randomBytes(4).toString("hex"); |
| 76 | |
| 77 | const structuredOf = (result: { readonly raw: unknown }): Record<string, unknown> => |
| 78 | ((result.raw as { structuredContent?: Record<string, unknown> }).structuredContent ?? |
| 79 | {}) as Record<string, unknown>; |
| 80 | |
| 81 | /** |
| 82 | * The generated component, two frames down. |