typesPromiseableOn this pagePromiseable A type that allows both the given type and its Promise type. Interface typescripttype Promiseable<T> = T | Promise<T>; Usage typescriptimport { Promiseable } from '@modern-kit/types';type Result = Promiseable<string>; // string | Promise<string>