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