File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
generatedTypes/src/components/panningViews
src/components/panningViews Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ export declare enum PanningDirectionsEnum {
5
5
LEFT = "left" ,
6
6
RIGHT = "right"
7
7
}
8
- export declare type PanningDirectionsUnion = `${ PanningDirectionsEnum } ` ;
8
+ export declare type PanningDirectionsUnion = 'up' | 'down' | 'left' | 'right' ;
9
9
export declare type PanningDirections = PanningDirectionsEnum | PanningDirectionsUnion ;
10
10
export interface PanLocationProps {
11
11
left ?: number ;
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ export enum PanningDirectionsEnum {
8
8
RIGHT = 'right'
9
9
}
10
10
11
- export type PanningDirectionsUnion = `${ PanningDirectionsEnum } ` ;
11
+ export type PanningDirectionsUnion = 'up' | 'down' | 'left' | 'right' ;
12
12
13
13
export type PanningDirections = PanningDirectionsEnum | PanningDirectionsUnion ;
14
14
You can’t perform that action at this time.
0 commit comments