function func(cb: (err, data1, data2) => void) { setTimeout(() => { cb(null, 'Hello', 'World!'); }, 1000); } const observable = ...
確定! 回上一頁