1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! ImportDeclaration

use serde::{Deserialize, Serialize};

/// Declares a package import
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct ImportDeclaration {
    /// Type of AST node
    #[serde(rename = "type", skip_serializing_if = "Option::is_none")]
    pub r#type: Option<String>,
    /// Import Identifier
    #[serde(rename = "as", skip_serializing_if = "Option::is_none")]
    pub r#as: Option<crate::models::ast::Identifier>,
    /// Import Path
    #[serde(skip_serializing_if = "Option::is_none")]
    pub path: Option<crate::models::ast::StringLiteral>,
}

impl ImportDeclaration {
    /// Declares a package import
    pub fn new() -> Self {
        Self::default()
    }
}