yeet
This commit is contained in:
18
node_modules/unimodules-font-interface/ios/UMFontInterface.podspec
generated
vendored
Normal file
18
node_modules/unimodules-font-interface/ios/UMFontInterface.podspec
generated
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
require 'json'
|
||||
|
||||
package = JSON.parse(File.read(File.join(__dir__, '..', 'package.json')))
|
||||
|
||||
Pod::Spec.new do |s|
|
||||
s.name = 'UMFontInterface'
|
||||
s.version = package['version']
|
||||
s.summary = package['description']
|
||||
s.description = package['description']
|
||||
s.license = package['license']
|
||||
s.author = package['author']
|
||||
s.homepage = package['homepage']
|
||||
s.platform = :ios, '10.0'
|
||||
s.source = { git: 'https://github.com/expo/expo.git' }
|
||||
s.source_files = 'UMFontInterface/**/*.{h,m}'
|
||||
s.preserve_paths = 'UMFontInterface/**/*.{h,m}'
|
||||
s.requires_arc = true
|
||||
end
|
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