pub enum TypeDefinitionModuleStatement {
VariableDeclaration(DeclareVariableDeclaration),
FunctionDeclaration(DeclareFunctionDeclaration),
ClassDeclaration(DeclareClassDeclaration),
InterfaceDeclaration(Decorated<InterfaceDeclaration>),
TypeAlias(TypeAlias),
Namespace(Namespace),
Comment(String),
LocalTypeAlias(TypeAlias),
LocalVariableDeclaration(DeclareVariableDeclaration),
}
Expand description
Statements for ‘.d.ts’ files
Variants§
VariableDeclaration(DeclareVariableDeclaration)
FunctionDeclaration(DeclareFunctionDeclaration)
ClassDeclaration(DeclareClassDeclaration)
InterfaceDeclaration(Decorated<InterfaceDeclaration>)
TypeAlias(TypeAlias)
Namespace(Namespace)
Comment(String)
Information for upcoming declaration
LocalTypeAlias(TypeAlias)
Local alias, not exported from module. Does not start with declare
LocalVariableDeclaration(DeclareVariableDeclaration)
Trait Implementations§
source§impl ASTNode for TypeDefinitionModuleStatement
impl ASTNode for TypeDefinitionModuleStatement
fn from_reader( reader: &mut impl TokenReader<TSXToken, Span>, state: &mut ParsingState, settings: &ParseSettings ) -> ParseResult<Self>
fn to_string_from_buffer<T: ToString>( &self, _buf: &mut T, _settings: &ToStringSettingsAndData, _depth: u8 )
source§fn get_position(&self) -> Cow<'_, Span>
fn get_position(&self) -> Cow<'_, Span>
Returns position of node as span AS IT WAS PARSED. May be none if AST was doesn’t match anything in source
source§fn from_string(
source: String,
settings: ParseSettings,
source_id: SourceId,
offset: Option<usize>,
cursors: Vec<(usize, EmptyCursorId)>
) -> ParseResult<ParseOutput<Self>>
fn from_string( source: String, settings: ParseSettings, source_id: SourceId, offset: Option<usize>, cursors: Vec<(usize, EmptyCursorId)> ) -> ParseResult<ParseOutput<Self>>
From string, with default impl to call abstract method from_reader
source§fn to_string(&self, settings: &ToStringSettingsAndData) -> String
fn to_string(&self, settings: &ToStringSettingsAndData) -> String
Returns structure as valid string
source§impl Clone for TypeDefinitionModuleStatement
impl Clone for TypeDefinitionModuleStatement
source§fn clone(&self) -> TypeDefinitionModuleStatement
fn clone(&self) -> TypeDefinitionModuleStatement
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<TypeDefinitionModuleStatement> for TypeDefinitionModuleStatement
impl PartialEq<TypeDefinitionModuleStatement> for TypeDefinitionModuleStatement
source§fn eq(&self, other: &TypeDefinitionModuleStatement) -> bool
fn eq(&self, other: &TypeDefinitionModuleStatement) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.