//
//  GooglePayButtonConstants.swift
//  myfatoorah-reactnative
//
//  Created by Muhammad Bassiouny on 29/02/1446 AH.
//

import Foundation


@objc(GooglePayButtonConstants)
class GooglePayButtonConstants: NSObject, RCTBridgeModule {
    
    @objc
    static func moduleName() -> String! {
        return "GooglePayButtonConstants"
    }
    
    @objc
    static func requiresMainQueueSetup() -> Bool {
        return true
    }
    
    @objc
    func constantsToExport() -> [AnyHashable: Any]! {
        return [
            "": ""
        ]
    }
}
