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