bolt.new/types/txt.d.ts
2025-03-18 20:10:08 -07:00

7 lines
123 B
TypeScript

/**
* Declaration file for .txt imports
*/
declare module '*.txt' {
const content: string;
export default content;
}