UNPKG

@atomiqlabs/sdk

Version:

atomiq labs SDK for cross-chain swaps between smart chains and bitcoin

9 lines (7 loc) 194 B
export type AllOptional<T> = { [K in keyof T]?: T[K]; }; export type AllRequired<T> = { [K in keyof T]-?: T[K]; }; export type NotNever<T> = [T] extends [never] ? false : true;