Migrate actions,reducers and action types to TS #15
This commit is contained in:
17
app/firebaseServices/posts/PostService.ts
Normal file
17
app/firebaseServices/posts/PostService.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
// - Import react components
|
||||
import { firebaseRef, firebaseAuth } from 'app/firebase/';
|
||||
|
||||
import { SocialError } from "domain/common";
|
||||
import { IPostService } from 'services/posts';
|
||||
|
||||
/**
|
||||
* Firbase post service
|
||||
*
|
||||
* @export
|
||||
* @class PostService
|
||||
* @implements {IPostService}
|
||||
*/
|
||||
export class PostService implements IPostService {
|
||||
|
||||
|
||||
}
|
||||
5
app/firebaseServices/posts/index.ts
Normal file
5
app/firebaseServices/posts/index.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { PostService } from "./PostService";
|
||||
|
||||
export {
|
||||
PostService
|
||||
}
|
||||
Reference in New Issue
Block a user