TsTypeLiteral Type
Represents a type literal `{ ... }` with inline members. Reflects: `TypeLiteralNode` and the corresponding anonymous object type. Example (TS): ```ts type Point = { x: number; y: number; (x: number): string } ```
Represents a type literal `{ ... }` with inline members. Reflects: `TypeLiteralNode` and the corresponding anonymous object type. Example (TS): ```ts type Point = { x: number; y: number; (x: number): string } ```