22 lines
368 B
Objective-C
22 lines
368 B
Objective-C
//
|
|
// PdfUtility.h
|
|
// RCTPdf
|
|
//
|
|
// Created by iPad Developer on 19.09.19.
|
|
// Copyright © 2019 wonday.org. All rights reserved.
|
|
//
|
|
|
|
#ifndef PdfUtility_h
|
|
#define PdfUtility_h
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <React/RCTBridgeModule.h>
|
|
|
|
@interface PdfUtility : NSObject <RCTBridgeModule> {
|
|
NSOperationQueue *pngQueue;
|
|
}
|
|
|
|
@end
|
|
|
|
#endif /* PdfUtility_h */
|