Fix comments

This commit is contained in:
Justin Edmund 2023-07-06 23:20:09 -07:00
parent 2838622335
commit 511d7ee0ec
3 changed files with 3 additions and 3 deletions

View file

@ -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',

View file

@ -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',

View file

@ -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',