mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
446 B
TypeScript
15 lines
446 B
TypeScript
// Type definitions for react-native-version-number 0.3
|
|
// Project: https://github.com/APSL/react-native-version-number
|
|
// Definitions by: Vincent Langlet <https://github.com/VincentLanglet>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
interface VersionNumber {
|
|
appVersion?: string;
|
|
buildVersion?: string;
|
|
bundleIdentifier?: string;
|
|
}
|
|
|
|
declare const VersionNumber: VersionNumber;
|
|
|
|
export default VersionNumber;
|