UNPKG

@itools-front/ifrontui

Version:

Vue Material Component Framework

18 lines (15 loc) 445 B
// Types import Vue from 'vue' import Framework from '../' import { VuetifyPreset } from '@itools-front/ifrontui/types/services/presets' export interface VuetifyServiceContract { framework: Record<string, VuetifyServiceContract> init: (root: Vue, ssrContext?: object) => void } export interface VuetifyService { property: string new ( preset: VuetifyPreset, parent: InstanceType<typeof Framework> ): VuetifyServiceContract }