Skip to content

Commit

Permalink
Merge pull request #86 from ngtive/main
Browse files Browse the repository at this point in the history
chore: types import shorted
  • Loading branch information
fatihsolhan authored Feb 9, 2024
2 parents 8aa02b3 + 79c7cac commit e7e55cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/VOnboardingStep.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
</div>
</template>
<script lang="ts">
import { OnboardingState, STATE_INJECT_KEY } from '@/types/index';
import { OnboardingState, STATE_INJECT_KEY } from '@/types';
import { createPopper } from '@popperjs/core';
import merge from 'lodash.merge';
import { Ref, computed, defineComponent, inject, nextTick, ref, watch } from 'vue';
Expand Down
4 changes: 2 additions & 2 deletions src/components/VOnboardingWrapper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<script lang="ts">
import VOnboardingStep from '@/components/VOnboardingStep.vue';
import useGetElement from '@/composables/useGetElement';
import { Direction, OnboardingState, STATE_INJECT_KEY } from '@/types/index';
import type { onAfterStepOptions, onBeforeStepOptions, StepEntity } from '@/types/StepEntity';
import { OnboardingState, Direction, STATE_INJECT_KEY } from '@/types';
import type { StepEntity, onBeforeStepOptions, onAfterStepOptions } from '@/types/StepEntity';
import { defaultVOnboardingWrapperOptions, VOnboardingWrapperOptions } from '@/types/VOnboardingWrapper';
import merge from 'lodash.merge';
import { computed, ComputedRef, defineComponent, PropType, provide, ref, watch } from 'vue';
Expand Down

0 comments on commit e7e55cc

Please sign in to comment.