1
beta11では、自分のcustomTypings.d.tsを入力フォルダに配置しました。
このフォルダはIonic RC.0には存在しません。Ionic 2:RC.0でのカスタム入力ファイルの登録
Q)カスタムの入力ファイルをRC.0に登録するにはどうすればよいですか?
customTypings.d.ts:
interface Window {
plugins: any;
}
declare var SignaturePad: {
new(canvas: any, options?: any): any;
}
interface CordovaPlugins {
OneSignal: any;
}
これは私にとっては役に立ちません。 'customTypings.d.ts'は見つかりません。それらを参照しようとすると 'customTypings.d.ts'ではなく' src/declarations.d.ts'が見えます。 – Richard