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