forked from extern/nushell
8 lines
151 B
Rust
8 lines
151 B
Rust
use crate::{BlockId, Signature};
|
|
|
|
#[derive(Clone, Debug)]
|
|
pub struct Declaration {
|
|
pub signature: Box<Signature>,
|
|
pub body: Option<BlockId>,
|
|
}
|