import {BaseTestStructure, NamedTestStructure, ExportableTestStructure, TypedTestStructure, DefaultExpressionedTestStructure, AmbientableTestStructure, OrderableTestStructure, DocumentationedTestStructure} from "./../base"; import {VariableDeclarationType} from "./../../../../definitions"; export interface VariableTestStructure extends BaseTestStructure, NamedTestStructure, ExportableTestStructure, TypedTestStructure, DefaultExpressionedTestStructure, AmbientableTestStructure, OrderableTestStructure, DocumentationedTestStructure { declarationType?: VariableDeclarationType; }