@sector-labs/react-native-material-kit
Version:
Bringing Material Design to React Native
13 lines (8 loc) • 319 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