Skip to content
This repository was archived by the owner on Jul 10, 2019. It is now read-only.

Commit c27e3a6

Browse files
committed
fix: change directory name from interface to interfaces
1 parent eb946e0 commit c27e3a6

File tree

19 files changed

+14
-14
lines changed

19 files changed

+14
-14
lines changed

src/common/env/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import EnvLocal from './env.local'
2-
import { IEnv } from '@/interface/IEnv'
2+
import { IEnv } from '@/interfaces/IEnv'
33

44
console.log('process.env.NODE_ENV: ', process.env.NODE_ENV)
55
console.log('process.env.BUILD_ENV: ', process.env.BUILD_ENV)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/middleware/authenticated.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* @param redirect
55
*/
66

7-
import { ILoginCheckPayload } from '@/interface/api/User/ILoginCheck'
7+
import { ILoginCheckPayload } from '@/interfaces/api/User/ILoginCheck'
88

99
export default async function({ store, redirect }): Promise<void> {
1010
console.log('authenticated')

src/pages/example/api.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ div
1010

1111
<script lang="ts">
1212
import { Component, Vue } from 'nuxt-property-decorator'
13-
import { IApiPayload } from '@/interface/api/IApiPayload'
13+
import { IApiPayload } from '@/interfaces/api/IApiPayload'
1414
import { ApiInterface } from '@/store/api'
1515
import { cancelToken } from '@/utilities/'
1616

0 commit comments

Comments
 (0)