@btfuse/core
Version:
A native-first framework for building hybdrid web-native applications
15 lines (14 loc) • 484 B
TypeScript
import { AbstractFuseAPIFactory } from './AbstractFuseAPIFactory';
import { FuseAPI } from './FuseAPI';
import { Platform } from './Platform';
/**
* A FuseAPI factory that uses the HTTP/app scheme as the bridge.
*/
export declare class FuseAPIFactory extends AbstractFuseAPIFactory {
private $iosScheme;
private $androidScheme;
constructor();
create(platform: Platform): FuseAPI;
protected _createiOSAPI(): FuseAPI;
protected _createAndroidAPI(): FuseAPI;
}