feat(core): export PanelPositionType

This commit is contained in:
braks
2024-05-28 13:19:41 +02:00
committed by Braks
parent 2e2c389653
commit 6bf41079ed

View File

@@ -10,7 +10,7 @@ export enum PanelPosition {
BottomRight = 'bottom-right',
}
type PanelPositionType = 'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right'
export type PanelPositionType = 'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right'
export interface PanelProps {
position: PanelPosition | PanelPositionType