diff options
Diffstat (limited to 'app_expo/models/character/character.ts')
-rw-r--r-- | app_expo/models/character/character.ts | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/app_expo/models/character/character.ts b/app_expo/models/character/character.ts deleted file mode 100644 index 4405338..0000000 --- a/app_expo/models/character/character.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { Instance, SnapshotOut, types } from 'mobx-state-tree' - -/** - * Rick and Morty character model. - */ -export const CharacterModel = types.model('Character').props({ - id: types.identifierNumber, - name: types.maybe(types.string), - status: types.maybe(types.string), - image: types.maybe(types.string), -}) - -type CharacterType = Instance<typeof CharacterModel> -export interface Character extends CharacterType {} -type CharacterSnapshotType = SnapshotOut<typeof CharacterModel> -export interface CharacterSnapshot extends CharacterSnapshotType {} -export const createCharacterDefaultModel = () => types.optional(CharacterModel, {}) |