
Highlighter is autolocked, so we shouldn't show the lock icon ### Change Type - [x] `patch` — Bug fix [^1]: publishes a `patch` release, for devDependencies use `internal` [^2]: will not publish a new version ### Test Plan 1. Add a step-by-step description of how to test your PR here. 2. - [ ] Unit Tests - [ ] End to end tests ### Release Notes - We no longer show the tool lock option for highlighter - it didn't do anything anyway
120 lines
1.4 KiB
Text
120 lines
1.4 KiB
Text
---
|
|
title: TLHandle
|
|
status: published
|
|
category: tlschema
|
|
group: Interface
|
|
author: api
|
|
date: 06/23/2023
|
|
order: 92
|
|
---<Small>Public Interface</Small>
|
|
|
|
<details>
|
|
<summary>Table of Contents</summary>
|
|
- [Properties](#properties)
|
|
- [canBind](#TLHandle-canBind-member)
|
|
- [id](#TLHandle-id-member)
|
|
- [index](#TLHandle-index-member)
|
|
- [type](#TLHandle-type-member)
|
|
- [x](#TLHandle-x-member)
|
|
- [y](#TLHandle-y-member)
|
|
</details>
|
|
|
|
A base interface for a shape's handles.
|
|
|
|
|
|
##### Signature
|
|
|
|
|
|
```ts
|
|
interface TLHandle {}
|
|
```
|
|
|
|
---
|
|
|
|
## Properties
|
|
|
|
### `canBind` \{#TLHandle-canBind-member}
|
|
|
|
<Small>Public PropertySignature</Small>
|
|
|
|
##### Signature
|
|
|
|
|
|
```ts
|
|
canBind?: boolean
|
|
```
|
|
|
|
---
|
|
|
|
### `id` \{#TLHandle-id-member}
|
|
|
|
<Small>Public PropertySignature</Small>
|
|
|
|
A unique identifier for the handle.
|
|
|
|
|
|
##### Signature
|
|
|
|
|
|
```ts
|
|
id: string
|
|
```
|
|
|
|
---
|
|
|
|
### `index` \{#TLHandle-index-member}
|
|
|
|
<Small>Public PropertySignature</Small>
|
|
|
|
##### Signature
|
|
|
|
|
|
```ts
|
|
index: string
|
|
```
|
|
|
|
---
|
|
|
|
### `type` \{#TLHandle-type-member}
|
|
|
|
<Small>Public PropertySignature</Small>
|
|
|
|
##### Signature
|
|
|
|
|
|
```ts
|
|
type: TLHandleType
|
|
```
|
|
|
|
##### References
|
|
|
|
[TLHandleType](/gen/tlschema/TLHandleType-type)
|
|
|
|
---
|
|
|
|
### `x` \{#TLHandle-x-member}
|
|
|
|
<Small>Public PropertySignature</Small>
|
|
|
|
##### Signature
|
|
|
|
|
|
```ts
|
|
x: number
|
|
```
|
|
|
|
---
|
|
|
|
### `y` \{#TLHandle-y-member}
|
|
|
|
<Small>Public PropertySignature</Small>
|
|
|
|
##### Signature
|
|
|
|
|
|
```ts
|
|
y: number
|
|
```
|
|
|
|
---
|
|
|