|
| 1 | +import { useAttrs, useSlots, SetupContext } from '../index' |
| 2 | +import { describe, expectType } from './utils' |
| 3 | + |
| 4 | +describe('defineProps w/ type declaration', () => { |
| 5 | + // type declaration |
| 6 | + const props = defineProps<{ |
| 7 | + foo: string |
| 8 | + }>() |
| 9 | + // explicitly declared type should be refined |
| 10 | + expectType<string>(props.foo) |
| 11 | + // @ts-expect-error |
| 12 | + props.bar |
| 13 | +}) |
| 14 | + |
| 15 | +describe('defineProps w/ type declaration + withDefaults', () => { |
| 16 | + const res = withDefaults( |
| 17 | + defineProps<{ |
| 18 | + number?: number |
| 19 | + arr?: string[] |
| 20 | + obj?: { x: number } |
| 21 | + fn?: (e: string) => void |
| 22 | + x?: string |
| 23 | + genStr?: string |
| 24 | + }>(), |
| 25 | + { |
| 26 | + number: 123, |
| 27 | + arr: () => [], |
| 28 | + obj: () => ({ x: 123 }), |
| 29 | + fn: () => {}, |
| 30 | + genStr: () => '' |
| 31 | + } |
| 32 | + ) |
| 33 | + |
| 34 | + res.number + 1 |
| 35 | + res.arr.push('hi') |
| 36 | + res.obj.x |
| 37 | + res.fn('hi') |
| 38 | + // @ts-expect-error |
| 39 | + res.x.slice() |
| 40 | + res.genStr.slice() |
| 41 | +}) |
| 42 | + |
| 43 | +describe('defineProps w/ union type declaration + withDefaults', () => { |
| 44 | + withDefaults( |
| 45 | + defineProps<{ |
| 46 | + union1?: number | number[] | { x: number } |
| 47 | + union2?: number | number[] | { x: number } |
| 48 | + union3?: number | number[] | { x: number } |
| 49 | + union4?: number | number[] | { x: number } |
| 50 | + }>(), |
| 51 | + { |
| 52 | + union1: 123, |
| 53 | + union2: () => [123], |
| 54 | + union3: () => ({ x: 123 }), |
| 55 | + union4: () => 123 |
| 56 | + } |
| 57 | + ) |
| 58 | +}) |
| 59 | + |
| 60 | +describe('defineProps w/ runtime declaration', () => { |
| 61 | + // runtime declaration |
| 62 | + const props = defineProps({ |
| 63 | + foo: String, |
| 64 | + bar: { |
| 65 | + type: Number, |
| 66 | + default: 1 |
| 67 | + }, |
| 68 | + baz: { |
| 69 | + type: Array, |
| 70 | + required: true |
| 71 | + } |
| 72 | + }) |
| 73 | + expectType<{ |
| 74 | + foo?: string |
| 75 | + bar: number |
| 76 | + baz: unknown[] |
| 77 | + }>(props) |
| 78 | + |
| 79 | + props.foo && props.foo + 'bar' |
| 80 | + props.bar + 1 |
| 81 | + // @ts-expect-error should be readonly |
| 82 | + props.bar++ |
| 83 | + props.baz.push(1) |
| 84 | + |
| 85 | + const props2 = defineProps(['foo', 'bar']) |
| 86 | + props2.foo + props2.bar |
| 87 | + // @ts-expect-error |
| 88 | + props2.baz |
| 89 | +}) |
| 90 | + |
| 91 | +describe('defineEmits w/ type declaration', () => { |
| 92 | + const emit = defineEmits<(e: 'change') => void>() |
| 93 | + emit('change') |
| 94 | + // @ts-expect-error |
| 95 | + emit() |
| 96 | + // @ts-expect-error |
| 97 | + emit('bar') |
| 98 | + |
| 99 | + type Emits = { (e: 'foo' | 'bar'): void; (e: 'baz', id: number): void } |
| 100 | + const emit2 = defineEmits<Emits>() |
| 101 | + |
| 102 | + emit2('foo') |
| 103 | + emit2('bar') |
| 104 | + emit2('baz', 123) |
| 105 | + // @ts-expect-error |
| 106 | + emit2('baz') |
| 107 | +}) |
| 108 | + |
| 109 | +describe('defineEmits w/ runtime declaration', () => { |
| 110 | + const emit = defineEmits({ |
| 111 | + foo: () => {}, |
| 112 | + bar: null |
| 113 | + }) |
| 114 | + emit('foo') |
| 115 | + emit('bar', 123) |
| 116 | + // @ts-expect-error |
| 117 | + emit('baz') |
| 118 | + |
| 119 | + const emit2 = defineEmits(['foo', 'bar']) |
| 120 | + emit2('foo') |
| 121 | + emit2('bar', 123) |
| 122 | + // @ts-expect-error |
| 123 | + emit2('baz') |
| 124 | +}) |
| 125 | + |
| 126 | +describe('useAttrs', () => { |
| 127 | + const attrs = useAttrs() |
| 128 | + expectType<Record<string, unknown>>(attrs) |
| 129 | +}) |
| 130 | + |
| 131 | +describe('useSlots', () => { |
| 132 | + const slots = useSlots() |
| 133 | + expectType<SetupContext['slots']>(slots) |
| 134 | +}) |
0 commit comments