15 lines
152 B
TypeScript
15 lines
152 B
TypeScript
import { User } from "domain/users";
|
|
|
|
|
|
|
|
|
|
/**
|
|
* Post service interface
|
|
*
|
|
* @export
|
|
* @interface IPostService
|
|
*/
|
|
export interface IPostService {
|
|
|
|
|
|
} |