UNPKG

@microtica/auth

Version:

Authentication and Authorization library

13 lines (12 loc) 356 B
import { Table, Column } from "@microtica/database"; export interface IdentityRole { identityId: string; itemId: string; role: string; } export interface IdentityRoleTable extends Table<IdentityRole> { identityId: Column<string>; itemId: Column<string>; role: Column<string>; } export declare const IdentityRole: IdentityRoleTable;