mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2025-12-07 08:53:00 +00:00
11 lines
197 B
TypeScript
11 lines
197 B
TypeScript
|
|
import { Advent22 } from "@/plugins/advent22";
|
||
|
|
|
||
|
|
declare module "@vue/runtime-core" {
|
||
|
|
// bind to `this` keyword
|
||
|
|
interface ComponentCustomProperties {
|
||
|
|
$advent22: Advent22;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export { };
|