Skip to content

Commit

Permalink
fix(types): vite build typescript error
Browse files Browse the repository at this point in the history
  • Loading branch information
MoonlightSmile committed Apr 30, 2021
1 parent fb16f71 commit cd1a402
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/varlet-ui/types/varDirective.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import { DirectiveBinding } from '@vue/runtime-core'
export class VarDirective {
static install(app: App): void

static mounted(el: HTMLElement, binding: DirectiveBinding)
static mounted(el: HTMLElement, binding: DirectiveBinding): void

static updated(el: HTMLElement, binding: DirectiveBinding)
static updated(el: HTMLElement, binding: DirectiveBinding): void

static unmounted(el: HTMLElement, binding: DirectiveBinding)
static unmounted(el: HTMLElement, binding: DirectiveBinding): void
}

0 comments on commit cd1a402

Please sign in to comment.