fix typo
This commit is contained in:
Aurimas1
2017-09-19 10:40:03 +03:00
parent f8c293c4aa
commit 8673d02fe8

View File

@@ -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<string | HTMLElement>
title?: string;