react-native-material-kit-fg
Version:
Bringing Material Design to React Native
26 lines (18 loc) • 530 B
text/typescript
import { ReactChild } from 'react';
export type NullableString = string | null | undefined;
export type NullableReactChild = ReactChild | null | undefined;
export interface CheckedEvent {
checked: boolean;
}
export type CheckedListener = (event: CheckedEvent) => void;
export type Prediction<T> = (obj?: T) => boolean;
export interface Dimension {
width: number;
height: number;
}
/** Numeric range */
export interface NumRange {
min: number;
max: number;
}
export type RippleLocation = 'tapLocation' | 'center';