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

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