mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Creating type definitions for "react-native-keychain" * Updating index.d.ts to include Promise<string> on getGenericPassword() * Fixing all tslint and dts-lint errors and issues. * Removing duplicate "Definitions by" * Updating index.d.ts, improving tests. -Updating index.d.ts to include type definitions for canImplyAuthentication and getSupportedBiometryType. -Updating index.d.ts to fix type definitions for setInternetCredentials and resetGenericPassword. -Adding full type test coverage to all exposed methods on react-native-keychain. * Updating type definitions for setGenericPassword, getGenericPassword. -Updating index.d.ts to update type definitions for setGenericPassword, getGenericPassword. -Updating type definition tests to reflect new type definition updates. * Updating type definitions for setGenericPassword -Updating index.d.ts to include correct setGenericPassword parameter types.
24 lines
502 B
JSON
24 lines
502 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strictFunctionTypes": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"react-native-keychain-tests.ts"
|
|
]
|
|
}
|