/*
 * Copyright (c) Meta Platforms, Inc. and affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

#import <Foundation/Foundation.h>

NS_ASSUME_NONNULL_BEGIN

/**
 Provides known Instruction Set Architectures.
 */
typedef NSString *FBArchitecture NS_STRING_ENUM;

extern FBArchitecture const FBArchitectureI386;
extern FBArchitecture const FBArchitectureX86_64;
extern FBArchitecture const FBArchitectureArmv7;
extern FBArchitecture const FBArchitectureArmv7s;
extern FBArchitecture const FBArchitectureArm64;
extern FBArchitecture const FBArchitectureArm64e;

NS_ASSUME_NONNULL_END
