ulaval/modul-components

Explore Vue service injection declarations

Closed this issue · 1 comments

We should define service typings at one place and import a single file to acces them.

declare module 'vue/types/vue' {
    interface Vue {
        $http: HttpService;
    }
}

If working, we should be able to delete the base Modul class that declare these types.

MODUL-97