nope/lib/types/ISystemElements.ts

12 lines
279 B
TypeScript

import { IJsonSchema } from "./IJSONSchema";
import {
IServiceOptions,
IParsableDescription,
} from "./nope/nopeModule.interface";
export interface ISystemElements {
modules: IParsableDescription[];
services: IServiceOptions[];
generalInformationModel: IJsonSchema;
}