mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-05 18:45:23 +02:00
b7bdd45dba
* Fix fix labeler config (#8) * fix vue import error --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
6 lines
169 B
TypeScript
6 lines
169 B
TypeScript
/* eslint-disable */
|
|
declare module "*.vue" {
|
|
import { defineComponent } from "vue";
|
|
const component: ReturnType<typeof defineComponent>;
|
|
export default component;
|
|
}
|