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