| 20 | const { Sider, Content } = Layout; |
| 21 | |
| 22 | interface PageSpec { |
| 23 | title: string; |
| 24 | cy: string; |
| 25 | warnIfUnverified?: boolean; |
| 26 | titleProps?: TextProps; |
| 27 | } |
| 28 | |
| 29 | // TypeScript shenanigans (so we can still use `keyof typeof pages` later) |
| 30 | function page(spec: PageSpec): PageSpec { |
nothing calls this directly
no outgoing calls
no test coverage detected