mirror of
https://github.com/nushell/nushell.git
synced 2025-04-19 10:48:21 +02:00
8 lines
123 B
Rust
8 lines
123 B
Rust
use crate::{AliasId, BlockId, DeclId};
|
|
|
|
pub enum Exportable {
|
|
Decl(DeclId),
|
|
Alias(AliasId),
|
|
EnvVar(BlockId),
|
|
}
|