7 lines
141 B
TypeScript
7 lines
141 B
TypeScript
// Any import that ends in .txt should be treated as a string
|
|
|
|
declare module "*.txt" {
|
|
const content: string;
|
|
export default content;
|
|
}
|