与Typescript中的静态类变量相比,模块中全局字段的利弊是什么?

时间:2019-03-11 14:12:23

标签: typescript

将字段放入导出与将其设为静态类变量有哪些利弊?

我最终将其混淆,如下所示(这肯定是最糟糕的方法)。

export const stringItemsCollection = 'stringItems';

export const loadingString = '...';

export default class DatabaseStringItem {
  static readonly encryptionKey: string;
}

0 个答案:

没有答案