Skip to content

Commit

Permalink
index.* prettier fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonlundien committed Jul 10, 2023
1 parent ba631d8 commit 2bee0ea
Show file tree
Hide file tree
Showing 3 changed files with 867 additions and 733 deletions.
86 changes: 35 additions & 51 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,61 +1,45 @@
import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
import { DefineComponent } from "vue";
import { IconDefinition } from '@fortawesome/fontawesome-svg-core'
import { DefineComponent } from 'vue'

interface FontAwesomeIconProps {
border?: boolean;
fixedWidth?: boolean;
flip?: "horizontal" | "vertical" | "both";
icon: object | Array<string> | string | IconDefinition;
mask?: object | Array<string> | string;
maskId?: object | Array<string> | string;
listItem?: boolean;
pull?: "right" | "left";
pulse?: boolean;
rotation?: 90 | 180 | 270 | "90" | "180" | "270";
swapOpacity?: boolean;
size?:
| "2xs"
| "xs"
| "sm"
| "lg"
| "xl"
| "2xl"
| "1x"
| "2x"
| "3x"
| "4x"
| "5x"
| "6x"
| "7x"
| "8x"
| "9x"
| "10x";
spin?: boolean;
transform?: object | string;
symbol?: boolean | string;
title?: string;
titleId?: string;
inverse?: boolean;
bounce?: boolean;
shake?: boolean;
beat?: boolean;
fade?: boolean;
beatFade?: boolean;
spinPulse?: boolean;
spinReverse?: boolean;
border?: boolean
fixedWidth?: boolean
flip?: 'horizontal' | 'vertical' | 'both'
icon: object | Array<string> | string | IconDefinition
mask?: object | Array<string> | string
maskId?: object | Array<string> | string
listItem?: boolean
pull?: 'right' | 'left'
pulse?: boolean
rotation?: 90 | 180 | 270 | '90' | '180' | '270'
swapOpacity?: boolean
size?: '2xs' | 'xs' | 'sm' | 'lg' | 'xl' | '2xl' | '1x' | '2x' | '3x' | '4x' | '5x' | '6x' | '7x' | '8x' | '9x' | '10x'
spin?: boolean
transform?: object | string
symbol?: boolean | string
title?: string
titleId?: string
inverse?: boolean
bounce?: boolean
shake?: boolean
beat?: boolean
fade?: boolean
beatFade?: boolean
spinPulse?: boolean
spinReverse?: boolean
}

interface FontAwesomeLayersProps {
fixedWidth?: boolean;
fixedWidth?: boolean
}

interface FontAwesomeLayersTextProps {
value: string | number;
transform?: object | string;
counter?: boolean;
position?: "bottom-left" | "bottom-right" | "top-left" | "top-right";
value: string | number
transform?: object | string
counter?: boolean
position?: 'bottom-left' | 'bottom-right' | 'top-left' | 'top-right'
}

declare const FontAwesomeIcon: DefineComponent<FontAwesomeIconProps>;
declare const FontAwesomeLayers: DefineComponent<FontAwesomeLayersProps>;
declare const FontAwesomeLayersText: DefineComponent<FontAwesomeLayersTextProps>;
declare const FontAwesomeIcon: DefineComponent<FontAwesomeIconProps>
declare const FontAwesomeLayers: DefineComponent<FontAwesomeLayersProps>
declare const FontAwesomeLayersText: DefineComponent<FontAwesomeLayersTextProps>

0 comments on commit 2bee0ea

Please sign in to comment.