mirror of
https://github.com/prdlk/leetcode.git
synced 2026-09-17 15:36:26 +00:00
6 lines
140 B
TypeScript
6 lines
140 B
TypeScript
// Vite `?raw` imports resolve to the file's text content.
|
|
declare module "*.md?raw" {
|
|
const content: string;
|
|
export default content;
|
|
}
|