Files
juwan-frontend/lib/policy/actor.ts
T

8 lines
124 B
TypeScript

import type { UserRole } from "@/lib/types"
export interface Actor {
userId: string
role: UserRole
shopId?: string
}