UNPKG

@idealic/poker-engine

Version:

Professional poker game engine and hand evaluator with built-in iterator utilities

7 lines 256 B
export type MaybePromise<T> = T | Promise<T>; /** * Type representing any iterable that can yield values */ export type AnyIterable<T> = AsyncGenerator<T> | AsyncIterable<T> | Iterable<T>; export type * from './index'; //# sourceMappingURL=types.d.ts.map