mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-16 14:11:50 +00:00
10 lines
207 B
TypeScript
10 lines
207 B
TypeScript
declare module "*.vue" {
|
|
import { DefineComponent } from "vue";
|
|
const component: DefineComponent;
|
|
export default component;
|
|
}
|
|
|
|
declare module "*.png" {
|
|
const value: string;
|
|
export default value;
|
|
}
|