reactnativecomponents
Version:
React Native Components
27 lines (26 loc) • 626 B
TypeScript
export declare const Code: {
systemCancel: string;
userCancel: string;
userFallback: string;
exception: string;
};
/**
* @author 田尘殇Sean(sean.snow@live.com)
* @date 2017/9/29
*/
export default class LocalAuthentication {
/**
* 是否支持生物识别
*/
static supportBiometrics(): any;
/**
* 验证指纹
* @param tipMsg 提示消息
* @param failedMsg 验证失败消息
*/
static fingerprintValidate({ tipMsg, failedMsg }: {
tipMsg: any;
failedMsg?: string;
}): any;
static createDialog({ title, tipMsg }: any): JSX.Element;
}