@microtica/auth
Version:
Authentication and Authorization library
13 lines (12 loc) • 356 B
TypeScript
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;