interface Type {
    name: string;
    options?: object;
    parameters?: Type[];
}
export default Type;
