UNPKG

@devaloop/prettier-plugin-devalang

Version:

Prettier plugin for Devalang formatting

42 lines (40 loc) 725 B
import { ProgramNode, BpmDeclaration, BankDeclaration, LetDeclaration, LoopBlock, TriggerCall, GroupBlock, CallStatement, SpawnStatement, SleepStatement, Comment, Unknown, ImportStatement, ExportStatement, IfStatement, LoadStatement, BlankLine, ArrowCallStatement, } from "../interfaces/statement"; export type Node = | ProgramNode | BpmDeclaration | BankDeclaration | LetDeclaration | LoopBlock | TriggerCall | GroupBlock | CallStatement | SpawnStatement | SleepStatement | Comment | Unknown | ImportStatement | ExportStatement | IfStatement | LoadStatement | BlankLine | LoadStatement | ArrowCallStatement;