Skip to content

Commit

Permalink
添加 crew-data constants 文件 && 引入
Browse files Browse the repository at this point in the history
  • Loading branch information
war408705279 committed Apr 9, 2021
1 parent ad2c4bc commit d48a6f5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/constants/crew-data/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@
import { GetCrewDataResp } from '@/apis/crew-data'

import { data as originalData } from './original'
import { data as kelvinData } from './kelvin'

export type DataType = {
[key: string]: GetCrewDataResp
}

export const data: DataType = {
...originalData
...originalData,
...kelvinData
}
8 changes: 8 additions & 0 deletions src/constants/crew-data/kelvin.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/**
* @file crew-data 相关 kelvin 文件
* @description 开尔文时间线系列演员信息
*/

import { DataType } from '.'

export const data: DataType = {}

0 comments on commit d48a6f5

Please sign in to comment.