Files
newsnow/shared/types.ts
T
2024-09-26 19:16:42 +08:00

9 lines
154 B
TypeScript

import type { sections } from "./data"
export interface Section {
name: string
id: string
}
export type SectionId = (typeof sections)[number]["id"]