@k3000/store 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/type.ts ADDED
@@ -0,0 +1,19 @@
1
+ export interface Gen {
2
+ appendSet(name: String, set: Object, remark?: String): void
3
+ updateCol(name: String, set: Object): void
4
+ renameSet(name: String, newName: String): void
5
+ /**
6
+ * @example
7
+ * renameCol('name', {
8
+ * oldName: 'newName'
9
+ * })
10
+ */
11
+ renameCol(name: String, set: Object): void
12
+ deleteSet(name: String): void
13
+ deleteCol(name: String, colName: String): void
14
+ updateSetRemark(name: String, remark: String): void
15
+ /**
16
+ * 提交修改
17
+ */
18
+ submit(): void
19
+ }