mirror of
https://github.com/stackblitz/bolt.new
synced 2025-06-26 18:17:50 +00:00
7 lines
123 B
TypeScript
7 lines
123 B
TypeScript
/**
|
|
* Declaration file for .txt imports
|
|
*/
|
|
declare module '*.txt' {
|
|
const content: string;
|
|
export default content;
|
|
}
|