tariffs/src/services/permission/permission.interface.ts

7 lines
208 B
TypeScript
Raw Normal View History

import type { Account } from "@/types/models/account.type";
import type { Role } from "@/types/models/role.type";
export interface AccountService {
determineAccountRole(account: Account): Promise<Role>;
}