sda
Version:
Software development assistant
10 lines (9 loc) • 353 B
TypeScript
import { IConfigCommand, IConfigEnvironment, IConfigTemplate } from './IConfig';
export declare type INamed<T> = T & {
id: string;
};
export declare type IEnvironment = INamed<IConfigEnvironment> & {
template: ITemplate;
};
export declare type ITemplate = INamed<IConfigTemplate>;
export declare type ICommand = INamed<IConfigCommand>;