7 lines
208 B
TypeScript
7 lines
208 B
TypeScript
![]() |
import type { Account } from "@/types/models/account.type";
|
||
|
import type { Role } from "@/types/models/role.type";
|
||
|
|
||
|
export interface AccountService {
|
||
|
determineAccountRole(account: Account): Promise<Role>;
|
||
|
}
|