8 lines
147 B
TypeScript
8 lines
147 B
TypeScript
import type { NotesData } from '../shared/index.js'
|
|
|
|
declare module '@internal/notesData' {
|
|
const notesData: NotesData
|
|
|
|
export { notesData }
|
|
}
|