17 lines
391 B
TypeScript
17 lines
391 B
TypeScript
// - Import react components
|
|
import { firebaseRef, firebaseAuth } from 'app/firebase/';
|
|
|
|
import { SocialError } from "domain/common";
|
|
import { IImageGalleryService } from 'services/imageGallery';
|
|
|
|
/**
|
|
* Firbase image gallery service
|
|
*
|
|
* @export
|
|
* @class ImageGalleryService
|
|
* @implements {IImageGalleryService}
|
|
*/
|
|
export class ImageGalleryService implements IImageGalleryService {
|
|
|
|
|
|
} |