GSI - Employe Self Service Mobile
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

5 lines
414 B

import { FirebaseApp } from '@firebase/app-types';
import { InstanceFactory, InstantiationMode, Name } from '../src/types';
import { Component } from '../src/component';
export declare function getFakeApp(appName?: string): FirebaseApp;
export declare function getFakeComponent<T extends Name>(name: T, factory: InstanceFactory<T>, multipleInstance?: boolean, instantiationMode?: InstantiationMode): Component<T>;