tarteauxmyrtilles/types/index.d.ts

10 lines
239 B
TypeScript

import TarteAuxMyrtilles from "@/tarteaumyrtilles";
import type { Service as TarteService } from "@/services";
declare global {
interface Window {
tarteauxmyrtilles: TarteAuxMyrtilles;
}
type Service = TarteService;
}