export type Interactor = {}

export const createInteractor = <ActualInteractor extends Interactor> (
    nativeModule: any,
): ActualInteractor => {
    return Object.assign(nativeModule, {
        ios: nativeModule,
        android: nativeModule,
    })
}
