/* * Copyright (c) Meta Platforms, Inc. and affiliates. * All rights reserved. * * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. */ #import NS_ASSUME_NONNULL_BEGIN /// An internal protocol used to describe a type that can extract data from a file NS_SWIFT_NAME(FileDataExtracting) @protocol FBSDKFileDataExtracting + (nullable NSData *)dataWithContentsOfFile:(NSString *)path options:(NSDataReadingOptions)readOptionsMask error:(NSError *_Nullable *)errorPtr; @end @interface NSData (FileDataExtracting) @end NS_ASSUME_NONNULL_END