nope/lib/types/ISystemElements.ts

8 lines
280 B
TypeScript
Raw Normal View History

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