lint(eslint): migrate to eslint and prettier (#25046)

This commit is contained in:
Liam DeBeasi
2022-04-04 11:12:53 -04:00
committed by GitHub
parent 12fd19dd4d
commit 5676bab316
826 changed files with 56539 additions and 52754 deletions

View File

@ -1,6 +1,6 @@
import { JSXBase } from '@stencil/core/internal';
import type { JSXBase } from '@stencil/core/internal';
import { AnimationBuilder, Mode } from '../../interface';
import type { AnimationBuilder, Mode } from '../../interface';
export interface ActionSheetOptions {
header?: string;
@ -19,7 +19,7 @@ export interface ActionSheetOptions {
leaveAnimation?: AnimationBuilder;
}
export interface ActionSheetAttributes extends JSXBase.HTMLAttributes<HTMLElement> {}
export type ActionSheetAttributes = JSXBase.HTMLAttributes<HTMLElement>;
export interface ActionSheetButton<T = any> {
text?: string;