我正在尝试使用打字稿在 angular2-meteor 应用程序中定义一个集合。这就是我所拥有的不起作用:
export var Images = new CollectionFS("images", {
stores: [new FileSystem("images", {path: "~/uploads"})]
});
我得到错误:
[web.browser] collections/pdfs.ts (1, 25): Cannot find name 'CollectionFS'.
[web.browser] collections/pdfs.ts (2, 18): Cannot find name 'FileSystem'.
我也尝试过使用传统的 CollectionFS 定义:
export var Images = new FS.Collection("images", {
stores: [new FS.Store.FileSystem("images", {path: "~/uploads"})]
});
我得到的错误是:
[web.browser] collections/pdfs.ts (1, 25): Cannot find name 'FS'.
[web.browser] collections/pdfs.ts (2, 18): Cannot find name 'FS'.
有什么想法吗?