@aws-amplify/core
Version:
Core category of aws-amplify
19 lines (15 loc) • 443 B
text/typescript
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
import { Platform } from 'react-native';
import { clientInfo as iOSClientInfo } from './ios';
import { clientInfo as androidClientInfo } from './android';
const { OS } = Platform;
export class ClientDevice {
static clientInfo() {
if (OS === 'ios') {
return iOSClientInfo();
} else {
return androidClientInfo();
}
}
}