@cnamts/vue-dot
Version:
Implementation of our Design System for the French Health Insurance
17 lines (11 loc) • 370 B
TypeScript
import { ExtendedVue } from 'vue/types/vue';
import { IndexedObject } from '../../types';
/* eslint-disable @typescript-eslint/no-explicit-any */
export type Options = IndexedObject<any>;
interface Computed {
options: Options;
}
interface Props {
vuetifyOptions: Options;
}
export type Customizable = ExtendedVue<Vue, unknown, unknown, Props, Computed, unknown>;