mirror of
https://github.com/nushell/nushell
synced 2025-01-01 15:58:55 +00:00
7 lines
94 B
Rust
7 lines
94 B
Rust
|
use crate::{BlockId, DeclId};
|
||
|
|
||
|
pub enum Exportable {
|
||
|
Decl(DeclId),
|
||
|
EnvVar(BlockId),
|
||
|
}
|