mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
8 lines
250 B
Crystal
8 lines
250 B
Crystal
|
module Spectator
|
||
|
# Identifier used in the spec.
|
||
|
# Signficant to the user.
|
||
|
# When a label is a symbol, then it is referencing a type or method.
|
||
|
# A label is nil when one can't be provided or captured.
|
||
|
alias Label = String | Symbol | Nil
|
||
|
end
|