git ssb

1+

dinoworm ๐Ÿ› / catstack



Tree: 59686225be4be560357b42396b8ff5f68b049505

Files: 59686225be4be560357b42396b8ff5f68b049505 / 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