mirror of
https://github.com/nushell/nushell.git
synced 2025-04-03 14:10:41 +02:00
8 lines
146 B
Rust
8 lines
146 B
Rust
use crate::{BlockId, Signature};
|
|
|
|
#[derive(Clone, Debug)]
|
|
pub struct Declaration {
|
|
pub signature: Signature,
|
|
pub body: Option<BlockId>,
|
|
}
|