UNPKG

@td-design/react-native

Version:

react-native UI组件库

16 lines 478 B
/// <reference types="react" /> import { NotifyProps } from './type'; export interface NotifyRef { show: (params: NotifyProps) => void; } declare function Notify(): JSX.Element; declare namespace Notify { var displayName: string; var SHORT: number; var LONG: number; var success: (props: NotifyProps) => void; var fail: (props: NotifyProps) => void; var info: (props: NotifyProps) => void; } export default Notify; //# sourceMappingURL=index.d.ts.map