如何使用打字稿类语法获取带有 NeDB 的数据存储?
namespace NamespaceName {
"use strict";
export class Persistence {
private attrs: Type;
public static $inject: Array<string> = [];
constructor(
) {
this.attr1 = "";
}
// Public Methods
public method1() {
...
}
// Private Methods
private method1() {
...
}
}
}
我应该在哪里创建和实例化我的数据存储?