Skip to content

Commit

Permalink
Export the Direction type from tooltip view (#447 #448)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgonggrijp committed Jun 13, 2022
1 parent 1697cfd commit 0622fe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/tooltip/tooltip-view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { extend } from 'lodash';

import View from '../core/view';

type Direction = 'top' | 'bottom' | 'left' | 'right';
export type Direction = 'top' | 'bottom' | 'left' | 'right';

export interface ViewOptions extends BaseOpt {
direction?: Direction;
Expand Down

0 comments on commit 0622fe2

Please sign in to comment.