typesPromiseableOn this pagePromiseable 주어진 타입과 해당 타입의 Promise 타입을 모두 허용하는 타입입니다. Interface typescripttype Promiseable<T> = T | Promise<T>; Usage typescripttype Result = Promiseable<string>; // string | Promise<string>