(
type: T
)
| 37 | abstract equals(other: BaseSelection): boolean; |
| 38 | |
| 39 | is<T extends SelectionConstructor>( |
| 40 | type: T |
| 41 | ): this is T extends SelectionConstructor<infer U> ? U : never { |
| 42 | return this.type === type.type; |
| 43 | } |
| 44 | |
| 45 | abstract toJSON(): Record<string, unknown>; |
| 46 | } |
nothing calls this directly
no outgoing calls
no test coverage detected