UNPKG
ts-budgie
Version:
latest (0.3.1)
0.3.1
Converts TypeScript code to Budgie.
github.com/budgielang/ts-budgie
budgielang/ts-budgie
ts-budgie
/
src
/
parsing
/
lists.ts
4 lines
(2 loc)
•
196 B
text/typescript
View Raw
1
2
3
4
import
{
BudgieLine
}
from
"../output/budgieLine"
;
export
const
getListValueType
= (
typeCommand
:
string
|
BudgieLine
) => (
typeof
typeCommand ===
"string"
? typeCommand : typeCommand.
args
[
0
]);