Migrate actions,reducers and action types to TS #15
This commit is contained in:
16
app/services/common/ICommonService.ts
Normal file
16
app/services/common/ICommonService.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import { User } from "domain/users";
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Common service interface
|
||||
*
|
||||
* @export
|
||||
* @interface ICommonService
|
||||
*/
|
||||
export interface ICommonService {
|
||||
|
||||
|
||||
|
||||
}
|
||||
5
app/services/common/index.ts
Normal file
5
app/services/common/index.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { ICommonService } from "./ICommonService";
|
||||
|
||||
export {
|
||||
ICommonService
|
||||
}
|
||||
Reference in New Issue
Block a user