kia-ml
Version:
Kia
15 lines (14 loc) • 420 B
JavaScript
import { 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)
});
export const createCharacterDefaultModel = () => types.optional(CharacterModel, {
id: 0
});
//# sourceMappingURL=character.js.map