| 55 | export type OuterHeaders = "Create T3 App" | "Deployment" | "Usage"; |
| 56 | |
| 57 | export interface SidebarItem< |
| 58 | TCode extends KnownLanguageCode = KnownLanguageCode, |
| 59 | > { |
| 60 | text: string; |
| 61 | link: `${TCode}/${string}`; |
| 62 | } |
| 63 | |
| 64 | export type SidebarItemLink = SidebarItem["link"]; |
| 65 |
nothing calls this directly
no outgoing calls
no test coverage detected