mirror of
https://github.com/ArtistGrid/artistgrid.git
synced 2025-08-28 11:43:49 +02:00
8 lines
No EOL
210 B
TypeScript
8 lines
No EOL
210 B
TypeScript
// types/index.d.ts
|
|
|
|
// This tells TypeScript that whenever we import a file ending in .csv,
|
|
// its default export will be a string.
|
|
declare module '*.csv' {
|
|
const content: string;
|
|
export default content;
|
|
} |