Summary: Style is modified, so I think it's okay to add our header there too. Pull Request resolved: https://github.com/facebook/flipper/pull/433 Differential Revision: D15213091 Pulled By: passy fbshipit-source-id: c02b67b022f12fdb3e0da39a308d33b073dcb9d3
20 lines
392 B
Objective-C
20 lines
392 B
Objective-C
//
|
|
// FKUserDefaultsSwizzleUtility.h
|
|
// FlipperKit
|
|
//
|
|
// Created by Marc Terns on 10/6/18.
|
|
// Copyright (c) 2018-present, Facebook, Inc.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface FKUserDefaultsSwizzleUtility : NSObject
|
|
|
|
+ (void)swizzleSelector:(SEL)selector class:(Class)aClass block:(void(^)(NSInvocation *invocation))block;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|