react-native-confirmation-code-field
Version:
A react-native component to input confirmation code for both Android and IOS
12 lines (11 loc) • 375 B
TypeScript
import type { LayoutChangeEvent } from 'react-native';
interface Coords {
locationX: number;
locationY: number;
}
export interface Params {
setValue(text: string): void;
value?: string;
}
export declare const useClearByFocusCellCommon: (params: Params) => readonly [(coords: Coords) => void, (index: number) => (event: LayoutChangeEvent) => void];
export {};