mirror of
https://github.com/nushell/nushell.git
synced 2024-11-09 01:54:39 +01:00
f3bb1d11d3
* export alias * export extern
8 lines
123 B
Rust
8 lines
123 B
Rust
use crate::{AliasId, BlockId, DeclId};
|
|
|
|
pub enum Exportable {
|
|
Decl(DeclId),
|
|
Alias(AliasId),
|
|
EnvVar(BlockId),
|
|
}
|