@devaloop/prettier-plugin-devalang
Version:
Prettier plugin for Devalang formatting
21 lines (19 loc) • 344 B
text/typescript
import {
Identifier,
NumberLiteral,
StringLiteral,
BooleanLiteral,
ObjectLiteral,
SynthReference,
ObjectProperty,
RawLiteral,
} from "../interfaces/statement";
export type Expression =
| Identifier
| NumberLiteral
| StringLiteral
| BooleanLiteral
| ObjectLiteral
| SynthReference
| ObjectProperty
| RawLiteral;