Skip to content

Commit 9e997c9

Browse files
committed
インターフェースと型定義のディレクトリ構造変更
1 parent 4e2bd94 commit 9e997c9

19 files changed

Lines changed: 9 additions & 10 deletions

frontend/src/Meta.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type MetaInterface from '@/types/MetaInterface';
1+
import type MetaInterface from '@/interfaces/MetaInterface';
22

33
// This file is auto-generated by the build system.
44
const meta: MetaInterface = {

frontend/src/components/MainContent.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ import { computed, ref } from 'vue';
44
import { useI18n } from 'vue-i18n';
55
import { useFileSystem } from '@/composables/useFileSystem';
66
import { useNotification } from '@/composables/useNotification';
7-
import { ValidationSeverity } from '@/types/vrm2sl';
7+
import { ValidationSeverity } from '@/types';
88
import type {
99
AnalysisReport,
1010
ConversionReport,
1111
ConvertOptions,
1212
ProjectSettings
13-
} from '@/types/vrm2sl';
13+
} from '@/interfaces';
1414
import { useGlobalStore } from '@/store';
1515
1616
const { t } = useI18n();
File renamed without changes.
File renamed without changes.
File renamed without changes.

frontend/src/types/vrm2sl/ConvertOptions.ts renamed to frontend/src/interfaces/ConvertOptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { TextureResizeMethod } from './TextureResizeMethod';
1+
import type { TextureResizeMethod } from '@/types/TextureResizeMethod';
22

33
/** Conversion options sent to backend analyze/convert commands. */
44
export interface ConvertOptions {
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)