@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
10 lines (9 loc) • 399 B
TypeScript
import * as React from 'react';
export type HapticsFunc = (componentName: 'picker' | 'stepper' | 'slider' | 'switch') => void;
interface HapticsContextProps {
onHaptics?: HapticsFunc;
children?: React.ReactNode;
}
declare const HapticsContext: React.Context<HapticsFunc | undefined>;
export declare const HapticsContextProvider: React.FC<HapticsContextProps>;
export default HapticsContext;