7 lines
182 B
TypeScript
7 lines
182 B
TypeScript
import type { Feature } from "../featureModels/featureModels.js";
|
|
import type { Organization } from "./orgTable.js";
|
|
|
|
export type FullOrg = Organization & {
|
|
features: Feature[];
|
|
};
|