Files
interfaces/ts/data/organization.ts
T

15 lines
356 B
TypeScript
Raw Normal View History

2026-05-06 15:04:33 +00:00
import * as plugins from '../plugins.js';
import { type IBillingPlan } from './billingplan.js';
import { type IOrgRoleDefinition, type IRole } from './role.js';
export interface IOrganization {
id: string;
data: {
name: string;
slug: string;
billingPlanId: string;
roleIds: string[];
roleDefinitions?: IOrgRoleDefinition[];
};
}