remove rxdb rxjs

This commit is contained in:
hunlongyu
2020-01-15 14:39:54 +08:00
parent 4a01550ad6
commit f05a361265
7 changed files with 156 additions and 6 deletions

View File

View File

@@ -0,0 +1,41 @@
const videoSchema = {
version: 0,
type: 'object',
properties: {
name: {
type: 'string'
},
type: {
type: 'string'
},
time: {
type: 'string'
},
detail: {
type: 'string',
primary: true
},
urls: {
type: 'array'
},
index: {
type: 'number'
}
}
}
const settingSchema = {
version: 0,
type: 'object',
properties: {
theme: {
type: 'string',
default: 'light'
}
}
}
export {
videoSchema,
settingSchema
}