1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct ImportDeclaration {
#[serde(rename = "type", skip_serializing_if = "Option::is_none")]
pub r#type: Option<String>,
#[serde(rename = "as", skip_serializing_if = "Option::is_none")]
pub r#as: Option<crate::models::ast::Identifier>,
#[serde(skip_serializing_if = "Option::is_none")]
pub path: Option<crate::models::ast::StringLiteral>,
}
impl ImportDeclaration {
pub fn new() -> Self {
Self::default()
}
}