yeet
This commit is contained in:
8
node_modules/unimodules-font-interface/ios/UMFontInterface/UMFontManagerInterface.h
generated
vendored
Normal file
8
node_modules/unimodules-font-interface/ios/UMFontInterface/UMFontManagerInterface.h
generated
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
// Copyright 2018-present 650 Industries. All rights reserved.
|
||||
#import <UMFontInterface/UMFontProcessorInterface.h>
|
||||
|
||||
@protocol UMFontManagerInterface
|
||||
|
||||
- (void)addFontProcessor:(id<UMFontProcessorInterface>)processor;
|
||||
|
||||
@end
|
13
node_modules/unimodules-font-interface/ios/UMFontInterface/UMFontProcessorInterface.h
generated
vendored
Normal file
13
node_modules/unimodules-font-interface/ios/UMFontInterface/UMFontProcessorInterface.h
generated
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
// Copyright 2018-present 650 Industries. All rights reserved.
|
||||
|
||||
@protocol UMFontProcessorInterface
|
||||
|
||||
- (UIFont *)updateFont:(UIFont *)uiFont
|
||||
withFamily:(NSString *)family
|
||||
size:(NSNumber *)size
|
||||
weight:(NSString *)weight
|
||||
style:(NSString *)style
|
||||
variant:(NSArray<NSDictionary *> *)variant
|
||||
scaleMultiplier:(CGFloat)scaleMultiplier;
|
||||
|
||||
@end
|
7
node_modules/unimodules-font-interface/ios/UMFontInterface/UMFontScalerInterface.h
generated
vendored
Normal file
7
node_modules/unimodules-font-interface/ios/UMFontInterface/UMFontScalerInterface.h
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
// Copyright 2018-present 650 Industries. All rights reserved.
|
||||
|
||||
@protocol UMFontScalerInterface
|
||||
|
||||
- (UIFont *)scaledFont:(UIFont *)font toSize:(CGFloat)fontSize;
|
||||
|
||||
@end
|
9
node_modules/unimodules-font-interface/ios/UMFontInterface/UMFontScalersManagerInterface.h
generated
vendored
Normal file
9
node_modules/unimodules-font-interface/ios/UMFontInterface/UMFontScalersManagerInterface.h
generated
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
// Copyright 2018-present 650 Industries. All rights reserved.
|
||||
|
||||
#import <UMFontInterface/UMFontScalerInterface.h>
|
||||
|
||||
@protocol UMFontScalersManagerInterface
|
||||
|
||||
- (void)registerFontScaler:(id<UMFontScalerInterface>)scaler;
|
||||
|
||||
@end
|
Reference in New Issue
Block a user