Skip to content

Commit

Permalink
fix(Slideover): export and clean types (#1692)
Browse files Browse the repository at this point in the history
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
  • Loading branch information
genu and benjamincanac committed Apr 22, 2024
1 parent 82d619b commit bd3fa86
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions src/runtime/types/slideover.d.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
import type { Component } from 'vue'

interface Slideover {
ui?: any;
side?: 'right' | 'left';
transition?: boolean;
appear?: boolean;
overlay?: boolean;
preventClose?: boolean;
modelValue?: boolean;
export interface Slideover {
ui?: any
side?: 'right' | 'left'
transition?: boolean
appear?: boolean
overlay?: boolean
preventClose?: boolean
modelValue?: boolean
}

interface SlideoverState {
component: Component | string;
props: Slideover;
export interface SlideoverState {
component: Component | string
props: Slideover
}

0 comments on commit bd3fa86

Please sign in to comment.