Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 53cffb4

Browse files
authored
fix: Fix type imports (temporalio#361)
1 parent ace29a3 commit 53cffb4

File tree

4 files changed

+26
-13
lines changed

4 files changed

+26
-13
lines changed

package-lock.json

Lines changed: 24 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/core-bridge/index.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { TLSConfig } from '@temporalio/common';
2-
import { LogLevel } from '@temporalio/worker';
32
import { SpanContext } from '@opentelemetry/api';
43

54
export { TLSConfig };

packages/core-bridge/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"license": "MIT",
2020
"dependencies": {
2121
"@temporalio/common": "file:../common",
22+
"@opentelemetry/api": "^1.0.3",
2223
"cargo-cp-artifact": "^0.1.4"
2324
},
2425
"bugs": {

packages/worker/src/workflow/interface.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { coresdk } from '@temporalio/proto';
22
import { WorkflowInfo } from '@temporalio/workflow';
3-
import { ExternalCall } from '@temporalio/workflow/src/dependencies';
3+
import { ExternalCall } from '@temporalio/workflow/lib/dependencies';
44

55
export interface Workflow {
66
/**

0 commit comments

Comments
 (0)