UNPKG

@nipe-solutions/react-spring-bottom-sheet

Version:
10 lines (9 loc) 323 B
export type OpenChangeReason = 'trigger' | 'close' | 'escape' | 'backdrop' | 'drag' | 'imperative'; export interface OpenChangeDetails { reason: OpenChangeReason; } export type SnapPointValue = number | `${number}px` | `${number}%` | 'content'; export interface SnapPoint { id: string; value: SnapPointValue; }