diff --git a/types/hopscotch/index.d.ts b/types/hopscotch/index.d.ts index f590285247..3ecf033230 100644 --- a/types/hopscotch/index.d.ts +++ b/types/hopscotch/index.d.ts @@ -4,7 +4,7 @@ // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare type CallbackNameNamesOrDefinition = string | string[] | (() => void); -declare type placmentTypes = 'top' | 'bottom' | 'right' | 'left'; +declare type placementTypes = 'top' | 'bottom' | 'right' | 'left'; interface HopscotchConfiguration { bubbleWidth?: number; @@ -46,7 +46,7 @@ interface TourDefinition extends HopscotchConfiguration { } interface StepDefinition { - placement: placmentTypes; + placement: placementTypes; target: string | HTMLElement | Array title?: string;