Move types to seperate directory

This commit is contained in:
Matthias 2020-08-29 11:23:39 +02:00
parent 44874377b8
commit 240dd06c0f
18 changed files with 17 additions and 16 deletions

View File

@ -57,7 +57,7 @@ import { Mutation } from 'vuex-class';
import userService from '@/shared/userService';
import { setBaseUrl } from '@/shared/apiService';
import { AuthPayload } from '@/store/types';
import { AuthPayload } from '@/types';
const defaultURL = 'http://localhost:8080';

View File

@ -16,7 +16,7 @@ import 'echarts/lib/component/dataZoom';
import 'echarts/lib/component/visualMap';
import 'echarts/lib/component/visualMapPiecewise';
import { ClosedTrade } from '@/store/types';
import { ClosedTrade } from '@/types';
// Define Column labels here to avoid typos
const CHART_PROFIT = 'Profit';

View File

@ -12,7 +12,7 @@ import 'echarts/lib/component/title';
import 'echarts/lib/component/tooltip';
import 'echarts/lib/component/legend';
import { DailyReturnValue } from '@/store/types';
import { DailyReturnValue } from '@/types';
// Define Column labels here to avoid typos
const CHART_ABS_PROFIT = 'Absolute profit';

View File

@ -15,7 +15,7 @@ import 'echarts/lib/component/legend';
import 'echarts/lib/component/visualMap';
import 'echarts/lib/component/visualMapPiecewise';
import { Trade } from '@/store/types';
import { Trade } from '@/types';
import { timestampHour } from '@/shared/formatters';
// Define Column labels here to avoid typos

View File

@ -25,7 +25,7 @@
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
import { namespace } from 'vuex-class';
import { BalanceInterface } from '@/store/types';
import { BalanceInterface } from '@/types';
const ftbot = namespace('ftbot');

View File

@ -20,7 +20,7 @@
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
import { namespace } from 'vuex-class';
import { BotState } from '@/store/types';
import { BotState } from '@/types';
import ForceBuyForm from './ForceBuyForm.vue';
const ftbot = namespace('ftbot');

View File

@ -36,7 +36,7 @@
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
import { namespace } from 'vuex-class';
import { BotState } from '@/store/types';
import { BotState } from '@/types';
const ftbot = namespace('ftbot');

View File

@ -61,7 +61,7 @@
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
import { namespace } from 'vuex-class';
import { BlacklistPayload, BlacklistResponse } from '@/store/types';
import { BlacklistPayload, BlacklistResponse } from '@/types';
const ftbot = namespace('ftbot');

View File

@ -38,7 +38,7 @@
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
import { namespace } from 'vuex-class';
import { ForcebuyPayload } from '@/store/types';
import { ForcebuyPayload } from '@/types';
const ftbot = namespace('ftbot');

View File

@ -10,7 +10,7 @@
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
import { namespace } from 'vuex-class';
import { Logs } from '@/store/types';
import { Logs } from '@/types';
const ftbot = namespace('ftbot');

View File

@ -10,7 +10,7 @@
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
import { namespace } from 'vuex-class';
import { PerformanceEntry } from '@/store/types';
import { PerformanceEntry } from '@/types';
const ftbot = namespace('ftbot');

View File

@ -42,7 +42,7 @@ import { namespace } from 'vuex-class';
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import { formatPercent } from '@/shared/formatters';
import { Trade } from '@/store/types';
import { Trade } from '@/types';
const ftbot = namespace('ftbot');

View File

@ -1,6 +1,6 @@
import axios from 'axios';
import { AuthPayload } from '@/store/types';
import { AuthPayload } from '@/types';
const AUTH_REFRESH_TOKEN = 'auth_ref_token';
const AUTH_ACCESS_TOKEN = 'auth_access_token';

View File

@ -1,5 +1,5 @@
import { api } from '@/shared/apiService';
import { BotState, BlacklistPayload, ForcebuyPayload, Logs, DailyPayload } from '@/store/types';
import { BotState, BlacklistPayload, ForcebuyPayload, Logs, DailyPayload } from '@/types';
export enum UserStoreGetters {
openTrades = 'openTrades',

1
src/types/index.ts Normal file
View File

@ -0,0 +1 @@
export * from './types';

View File

@ -14,7 +14,7 @@ import DailyChart from '@/components/charts/DailyChart.vue';
import HourlyChart from '@/components/charts/HourlyChart.vue';
import CumProfitChart from '@/components/charts/CumProfitChart.vue';
import { Trade, DailyReturnValue } from '@/store/types';
import { Trade, DailyReturnValue } from '@/types';
const ftbot = namespace('ftbot');

View File

@ -78,7 +78,7 @@ import TradeDetail from '@/components/ftbot/TradeDetail.vue';
import ReloadControl from '@/components/ftbot/ReloadControl.vue';
import LogViewer from '@/components/ftbot/LogViewer.vue';
import { Trade } from '@/store/types';
import { Trade } from '@/types';
import { UserStoreGetters } from '@/store/modules/ftbot';
const ftbot = namespace('ftbot');