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