1
タイプスクリプト定義のネストされたプロパティのタイプをどのように参照しますか?私は別にそれを定義し、それを参照することができます知っているTypescript:インターフェイス上でネストされた型を参照する方法は?
// def.d.ts
declare module Def {
type TFoo = {
bar: (...args) => void;
}
}
// script.ts
const bar: Def.TFoo.bar = function() {}; // Error TS2694: Namespace 'Def' has no exported member 'TFoo'
:
// def.d.ts
declare module Def {
type TFooBar = (...args) => void;
type TFoo = {
bar: TFooBar;
}
}
// script.ts
const bar: Def.TFooBar = function (...args) {};
しかし、私は上記の例のように、より多くの名前空間のスタイルで定義を使用したいと思いますこれは私が試したものです。私はそれをどのように達成するのですか?