⬅️ Back to Table of Contents
📄 UnaryExpressionBase.ts
📊 Analysis Summary
Metric |
Count |
📦 Imports |
2 |
📐 Interfaces |
1 |
📚 Table of Contents
🛠️ File Location:
📂 packages/ast-spec/src/base/UnaryExpressionBase.ts
📦 Imports
Name |
Source |
Expression |
../unions/Expression |
BaseNode |
./BaseNode |
Interfaces
UnaryExpressionBase
Interface Code
export interface UnaryExpressionBase extends BaseNode {
argument: Expression;
operator: string;
prefix: boolean;
}
Properties
Name |
Type |
Optional |
Description |
argument |
Expression |
✗ |
|
operator |
string |
✗ |
|
prefix |
boolean |
✗ |
|