git ssb

1+

dinoworm ๐Ÿ› / catstack



Tree: 2feb98c1e6e7d51eb76ec441dc2a134829471edd

Files: 2feb98c1e6e7d51eb76ec441dc2a134829471edd / app / todos / models.js

165 bytesRaw
1import t from 'tcomb'
2
3export const Todo = t.struct({
4 id: t.Number,
5 text: t.String,
6 complete: t.Boolean
7}, 'Todo')
8
9export const Todos = t.list(Todo, 'Todos')
10

Built with git-ssb-web