nope/lib/types/ISystemElements.ts

12 lines
279 B
TypeScript
Raw Normal View History

import { IJsonSchema } from "./IJSONSchema";
2021-12-04 07:25:26 +00:00
import {
2022-11-05 21:22:06 +00:00
IServiceOptions,
2021-12-04 07:25:26 +00:00
IParsableDescription,
} from "./nope/nopeModule.interface";
export interface ISystemElements {
2021-12-04 07:25:26 +00:00
modules: IParsableDescription[];
2022-11-05 21:22:06 +00:00
services: IServiceOptions[];
2021-12-04 07:25:26 +00:00
generalInformationModel: IJsonSchema;
}