Skip to content

Commit

Permalink
Vue でしか用いられない type を移動 #4
Browse files Browse the repository at this point in the history
  • Loading branch information
yuta2k committed Jun 26, 2024
1 parent a3638c9 commit f9fef6b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/components/TsErrViewer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,11 @@
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
import store from '@/store';
import { TsErrPidInfoCountPropType, TsErrInfo, TsErrPidInfo } from '@/ts_err_parser/TsErrInfo';
import { TsErrInfo, TsErrPidInfo } from '@/ts_err_parser/TsErrInfo';
import TsErrViewerConfig from '@/models/TsErrViewerConfig';
export type TsErrPidInfoCountPropType = 'total' | 'drop' | 'scramble';
interface TsErrViewerTableItem {
fileName: string;
rawText: string;
Expand Down
2 changes: 0 additions & 2 deletions src/ts_err_parser/TsErrInfo.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
export type TsErrPidInfoCountPropType = 'total' | 'drop' | 'scramble';

export interface TsErrPidInfo {
pid: number;
name: string | null;
Expand Down

0 comments on commit f9fef6b

Please sign in to comment.