8 lines
124 B
TypeScript
8 lines
124 B
TypeScript
import type { UserRole } from "@/lib/types"
|
|
|
|
export interface Actor {
|
|
userId: string
|
|
role: UserRole
|
|
shopId?: string
|
|
}
|