Skip to content

Commit

Permalink
fix(types): use UserVuetifyPreset instead of VuetifyPreset (#419)
Browse files Browse the repository at this point in the history
  • Loading branch information
KaelWD authored Jun 13, 2021
1 parent 4868782 commit d75b2be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/options.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import merge from 'deepmerge'

import { SFCDescriptor } from 'vue-template-compiler'
import { VuetifyPreset } from 'vuetify/types/services/presets'
import { UserVuetifyPreset } from 'vuetify/types/services/presets'
import { ModuleThis } from '@nuxt/types/config/module'

import { FontOptions } from './font'
Expand All @@ -23,7 +23,7 @@ export interface VuetifyLoaderOptions {
}): [string, string] | undefined
}

export interface Options extends Partial<VuetifyPreset> {
export interface Options extends Omit<UserVuetifyPreset, 'preset'> {
customVariables?: string[]
defaultAssets?: {
font?: FontOptions,
Expand Down

0 comments on commit d75b2be

Please sign in to comment.