Skip to content

Commit 56663a3

Browse files
committed
🚨 Fix linter warnings
1 parent 34d98ca commit 56663a3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

‎src/option/inject.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { InjectionKey } from 'vue'
22
import type { Cons } from '../component'
33
import type { OptionBuilder } from '../optionBuilder'
44
import { obtainSlot, optoinNullableMemberDecorator } from '../utils'
5-
import { compatibleMemberDecorator } from '../deco3/utils'
5+
66
export interface InjectConfig {
77
from?: string | symbol | Symbol | InjectionKey<any>
88
default?: any

‎src/option/props.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { Cons } from '../component'
22
import type { OptionBuilder } from '../optionBuilder'
33
import { obtainSlot, optoinNullableMemberDecorator } from '../utils'
4-
import { compatibleMemberDecorator } from '../deco3/utils'
4+
55
export interface PropsConfig {
66
type?: any
77
required?: boolean

‎src/option/vanilla.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { obtainSlot, optoinNullableMemberDecorator } from '../utils'
2-
import { compatibleMemberDecorator } from '../deco3/utils'
2+
33
export const decorator = optoinNullableMemberDecorator(function (proto: any, name: string) {
44
const slot = obtainSlot(proto)
55
const map = slot.obtainMap('vanilla')

‎src/option/vmodel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { Cons } from '../component'
22
import type { OptionBuilder } from '../optionBuilder'
33
import { obtainSlot, optoinNullableMemberDecorator } from '../utils'
44
import { decorator as PropsDecorator, type PropsConfig } from './props'
5-
import { compatibleMemberDecorator } from '../deco3/utils'
5+
66
export type VModelConfig = PropsConfig & {
77
name?: string
88
}

0 commit comments

Comments
 (0)