typesPromiseable이 페이지에서Promiseable 주어진 타입과 해당 타입의 Promise 타입을 모두 허용하는 타입입니다. Interface typescripttype Promiseable<T> = T | Promise<T>; Usage typescriptimport { Promiseable } from '@modern-kit/types';type Result = Promiseable<string>; // string | Promise<string>