nope/lib/types/ISystemElements.ts
2021-12-04 08:25:26 +01:00

12 lines
281 B
TypeScript

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