nope/lib/types/ISystemElements.ts

12 lines
281 B
TypeScript
Raw Normal View History

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