18 lines
269 B
JavaScript
18 lines
269 B
JavaScript
/**
|
|
* Stub of PasscodeAuth for Android.
|
|
*
|
|
* @providesModule PasscodeAuth
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
var warning = require('warning');
|
|
|
|
var PasscodeAuth = {
|
|
test: function() {
|
|
warning('Not yet implemented for Android.');
|
|
}
|
|
};
|
|
|
|
module.exports = PasscodeAuth;
|