(args?: WindowGetCodeParametersInput)
| 65 | } |
| 66 | |
| 67 | async function handleWindowGetCode(args?: WindowGetCodeParametersInput): Promise<GetCodeResult> { |
| 68 | const { _unbounded, ...rest } = args ?? {} |
| 69 | return dispatchGetCode(rest, { |
| 70 | unbounded: _unbounded |
| 71 | }) |
| 72 | } |
| 73 | |
| 74 | async function handleGetTokenDefs(args?: GetTokenDefsParametersInput): Promise<GetTokenDefsResult> { |
| 75 | const { names, includeAllModes } = args ?? {} |
nothing calls this directly
no test coverage detected