| 9 | * Common interface for temporal values that support property access. |
| 10 | */ |
| 11 | export interface TemporalValue { |
| 12 | /** Get a component property of this temporal value */ |
| 13 | get(property: string): unknown; |
| 14 | /** Convert to ISO string representation */ |
| 15 | toString(): string; |
| 16 | /** Type identifier for instanceof-like checks */ |
| 17 | readonly temporalType: string; |
| 18 | } |
| 19 | |
| 20 | /** |
| 21 | * Check if a value is a temporal value. |
no outgoing calls
no test coverage detected