UNPKG

@atomiqlabs/sdk

Version:

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

8 lines (7 loc) 192 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;