@nipe-solutions/react-spring-bottom-sheet
Version:
Accessible and composable bottom sheets for React
8 lines (7 loc) • 405 B
TypeScript
import type { SnapPoint } from '../public-types.js';
import type { LayoutMeasurements, ResolvedSnapPoint, SnapPointDiagnostic } from './types.js';
export interface ResolveSnapPointsResult {
snapPoints: ResolvedSnapPoint[];
diagnostics: SnapPointDiagnostic[];
}
export declare function resolveSnapPoints(snapPoints: readonly SnapPoint[], measurements: LayoutMeasurements): ResolveSnapPointsResult;