lint(): fix lint issues with feature-6.1

This commit is contained in:
Liam DeBeasi
2022-04-04 19:37:12 +00:00
parent cb341167c3
commit d737f7074d
19 changed files with 60 additions and 66 deletions

View File

@ -1,6 +1,6 @@
import { JSXBase } from '@stencil/core/internal';
import type { JSXBase } from '@stencil/core/internal';
import { AnimationBuilder, ComponentProps, ComponentRef, FrameworkDelegate, Mode } from '../../interface';
import type { AnimationBuilder, ComponentProps, ComponentRef, FrameworkDelegate, Mode } from '../../interface';
export interface ModalOptions<T extends ComponentRef = ComponentRef> {
component: T;
@ -33,7 +33,7 @@ export interface ModalAnimationOptions {
backdropBreakpoint?: number;
}
export interface ModalAttributes extends JSXBase.HTMLAttributes<HTMLElement> { }
export type ModalAttributes = JSXBase.HTMLAttributes<HTMLElement>
export interface ModalBreakpointChangeEventDetail {
breakpoint: number;