Skip to content

Commit b2b16a3

Browse files
committed
refactor: new deps
1 parent 4540306 commit b2b16a3

File tree

5 files changed

+525
-594
lines changed

5 files changed

+525
-594
lines changed

.eslintrc.js

-20
This file was deleted.

__tests__/.eslintrc.js

-5
This file was deleted.

__tests__/index.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { mylib, ComponentImpl } from '../src'
1+
import { mylib, Component } from '../src'
22
import { mount } from '@vue/test-utils'
33

44
describe('mylib', () => {
@@ -9,7 +9,7 @@ describe('mylib', () => {
99

1010
describe('Component', () => {
1111
it('works', async () => {
12-
const wrapper = mount(ComponentImpl, {
12+
const wrapper = mount(Component, {
1313
props: { data: { title: 'hi', summary: 'summary' } },
1414
})
1515
expect(wrapper.html()).toMatchInlineSnapshot(

src/index.ts

+4-20
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { defineComponent, PropType, VNodeProps, h } from 'vue'
1+
import { defineComponent, PropType, h } from 'vue'
22

33
/**
44
* Returns true.
@@ -7,17 +7,12 @@ export function mylib() {
77
return true
88
}
99

10-
export interface ComponentProps {
11-
custom?: boolean
12-
data: { title: string; summary: string }
13-
}
14-
15-
export const ComponentImpl = defineComponent({
10+
export const Component = defineComponent({
1611
props: {
17-
custom: Boolean,
12+
custom: Boolean as PropType<boolean>,
1813
data: {
1914
required: true,
20-
type: Object as PropType<ComponentProps['data']>,
15+
type: Object as PropType<{ title: string; summary: string }>,
2116
},
2217
},
2318

@@ -29,14 +24,3 @@ export const ComponentImpl = defineComponent({
2924
)
3025
},
3126
})
32-
33-
// export the public type for h/tsx inference
34-
// also to avoid inline import() in generated d.ts files
35-
/**
36-
* Component of vue-lib.
37-
*/
38-
export const Component = (ComponentImpl as any) as {
39-
new (): {
40-
$props: VNodeProps & ComponentProps
41-
}
42-
}

0 commit comments

Comments
 (0)