advent22/ui/src/d.ts/shims-advent22.d.ts

11 lines
196 B
TypeScript
Raw Normal View History

2022-11-03 15:04:57 +00:00
import { Advent22 } from "@/plugins/advent22";
declare module "@vue/runtime-core" {
// bind to `this` keyword
interface ComponentCustomProperties {
$advent22: Advent22;
}
}
2023-09-07 01:17:14 +00:00
export {};