import { ComplexType } from './ComplexType'; import { EntityType } from './EntityType'; import { Action } from './Action'; import { Function } from './Function'; import { Singleton } from './Singleton'; import { EnumType } from "./EnumType"; export interface Options { host: string; basePath: string; include?: Array; complexTypes?: Array; entityTypes?: Array; singletons?: Array; actions?: Array; functions?: Array; enumTypes?: Array; defaultNamespace?: string; }