const promise: Promise<string> = new Promise((resolve, reject) => { resolve("Hello World"); });
const data: Promise<Data> = fetchData();