17 lines
348 B
TypeScript
17 lines
348 B
TypeScript
// - Import react components
|
|
import { firebaseRef, firebaseAuth } from 'app/firebase/';
|
|
|
|
import { SocialError } from "domain/common";
|
|
import { ICommonService } from 'services/common';
|
|
|
|
/**
|
|
* Firbase common service
|
|
*
|
|
* @export
|
|
* @class CommonService
|
|
* @implements {ICommonService}
|
|
*/
|
|
export class CommonService implements ICommonService {
|
|
|
|
|
|
} |