(
plan: StateEditPlan,
options?: StateApplyEditsOptions
)
| 407 | } |
| 408 | |
| 409 | async applyEditPlan( |
| 410 | plan: StateEditPlan, |
| 411 | options?: StateApplyEditsOptions |
| 412 | ): Promise<StateApplyEditsResult> { |
| 413 | return this.applyEdits(planToStateEdits(plan), options); |
| 414 | } |
| 415 | |
| 416 | async applyEdits( |
| 417 | edits: StateEdit[], |
nothing calls this directly
no test coverage detected