Skip to content

Commit 4989269

Browse files
authored
build(renderless): fix typescript type error when build renderless package (#2885)
1 parent 3f65a2e commit 4989269

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/renderless/types/async-flowchart.type.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { ExtractPropTypes } from 'vue'
22
import type { asyncFlowchartProps } from '@/async-flowchart/src'
3-
import type ResizeObserver from '../src/common/deps/ResizeObserver'
3+
import type { ResizeObserver } from '@opentiny/utils'
44
import type {
55
observeContainerSize,
66
unobserveContainerSize,

packages/renderless/types/date-table.type.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { DATEPICKER } from '../src/common'
1+
import type { DATEPICKER } from '@opentiny/utils'
22

33
export interface IDateTableRow {
44
/** 列数,从0开始,[0, 6] */

packages/renderless/types/numeric.type.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { ExtractPropTypes } from 'vue'
2-
import type { BigIntDecimal } from '../src/common/bigInt'
2+
import type { BigIntDecimal } from '@opentiny/utils'
33
import type { numericProps, $constants } from '@/numeric/src'
44
import type {
55
focus,

0 commit comments

Comments
 (0)