12 lines
147 B
TypeScript
12 lines
147 B
TypeScript
import { User } from 'domain/users'
|
|
|
|
/**
|
|
* Vote service interface
|
|
*
|
|
* @export
|
|
* @interface IVoteService
|
|
*/
|
|
export interface IVoteService {
|
|
|
|
}
|