mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-08-03 11:07:00 -04:00
16 lines
260 B
TypeScript
16 lines
260 B
TypeScript
declare module '*.vue' {
|
|
import Vue from 'vue';
|
|
|
|
export default Vue;
|
|
}
|
|
|
|
declare module '*.md' {
|
|
declare const content: string;
|
|
export default content;
|
|
}
|
|
|
|
declare module '*?raw' {
|
|
declare const content: string;
|
|
export default content;
|
|
}
|