(schema: FrameSchema)
| 212 | }; |
| 213 | |
| 214 | export const schemaToFrame = (schema: FrameSchema): FrameNode => { |
| 215 | return { |
| 216 | schemaId: schema.id, |
| 217 | id: schema.id, |
| 218 | type: "frame", |
| 219 | rank: 0, |
| 220 | name: schema.id |
| 221 | }; |
| 222 | }; |
| 223 | |
| 224 | |
| 225 |
nothing calls this directly
no outgoing calls
no test coverage detected