This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
resolver/app/firebaseServices/votes/VoteService.ts

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 {
}