Fix comments
This commit is contained in:
parent
2838622335
commit
511d7ee0ec
3 changed files with 3 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
|||
import * as Element from './ElementTransformer'
|
||||
|
||||
// Transforms API response to Party object
|
||||
// Transforms API response to Character object
|
||||
export function toObject(data: any): Character {
|
||||
return {
|
||||
type: 'character',
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import * as Element from './ElementTransformer'
|
||||
|
||||
// Transforms API response to Party object
|
||||
// Transforms API response to Summon object
|
||||
export function toObject(data: any): Summon {
|
||||
return {
|
||||
type: 'summon',
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import * as Element from './ElementTransformer'
|
||||
|
||||
// Transforms API response to Party object
|
||||
// Transforms API response to Weapon object
|
||||
export function toObject(data: any): Weapon {
|
||||
return {
|
||||
type: 'weapon',
|
||||
|
|
|
|||
Loading…
Reference in a new issue