Skip to content

Commit

Permalink
fix: fixed type
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandrshy committed Jul 2, 2020
1 parent fc514d0 commit 9b1d1da
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/types.ts
Expand Up @@ -17,14 +17,17 @@ export type ConfigType = {
};

export type ModalType = {
open: (event?: Event) => void;
close: (event?: Event) => void;
removeEventListeners: () => void;
closeBySelector: (selector: string) => void;
registerNodes: (nodeList: HTMLElement[]) => void;
open: () => void;
preparationOpeningModal: () => void;
close: () => void;
preparationClosingModal: () => void;
closeBySelector: (selector: string) => void;
onClick: (event: Event) => void;
onKeydown: (event: KeyboardEvent) => void;
addEventListeners: () => void;
removeEventListeners: () => void;
changeScrollBehavior: (value: 'disable' | 'enable') => void;
};

export type KeukenhofType = {
Expand Down

0 comments on commit 9b1d1da

Please sign in to comment.