Method
insert
(
point: CodePoint,
code: string,
duration?: number,
)
Source from the content-addressed store, hash-verified
| 182 | duration: number, |
| 183 | ): ThreadGenerator; |
| 184 | public insert( |
| 185 | point: CodePoint, |
| 186 | code: string, |
| 187 | duration?: number, |
| 188 | ): TOwner | ThreadGenerator { |
| 189 | return this.replace([point, point], code, duration!); |
| 190 | } |
| 191 | |
| 192 | public remove(range: CodeRange): TOwner; |
| 193 | public remove(range: CodeRange, duration: number): ThreadGenerator; |
Callers
nothing calls this directly
Tested by
no test coverage detected