9 lines
243 B
Swift
9 lines
243 B
Swift
@objc(VisionCamera)
|
|
class VisionCamera: NSObject {
|
|
|
|
@objc(multiply:withB:withResolver:withRejecter:)
|
|
func multiply(a: Float, b: Float, resolve:RCTPromiseResolveBlock,reject:RCTPromiseRejectBlock) -> Void {
|
|
resolve(a*b)
|
|
}
|
|
}
|