12 lines
168 B
TypeScript
12 lines
168 B
TypeScript
declare module '*.json' {
|
|
const value: {
|
|
title: string
|
|
path: string
|
|
items: {
|
|
text: string
|
|
link: string
|
|
}[]
|
|
}[]
|
|
export default value
|
|
}
|