⑦一部のmodule構文
•namespaceは昔moduleという構文だった
•その名残で今でもmoduleと書くことができたが、
ついに非推奨化
39
module Foo {
export type Bar = number;
export const bar: Bar = 0;
}
namespace Foo {
export type Bar = number;
export const bar: Bar = 0;
}
Slide 40
Slide 40 text
一部のmodule構文: 注意
引き続きmoduleを使う場面もある。
(アンビエントモジュール宣言)
40
declare module “my-foo-module” {
type Bar = number;
const bar: Bar;
}