TsProperty Type
Represents a property (class or interface) with additional modifiers. Reflects: `PropertyDeclaration` (class) and `PropertySignature` (interface), including `readonly`, `?` optional, `static`, and visibility modifiers. Example (TS): ```ts interface P { readonly name?: string } class C { private static count: number } ```
Record fields
| Record Field |
Description
|
|
|
|
|
Full Usage:
IsOptional
Field type: bool
|
|
Full Usage:
IsPrivate
Field type: bool
|
|
Full Usage:
IsStatic
Field type: bool
|
|
Full Usage:
Name
Field type: string
|
|
|