UNPKG
@quantara/sdk
Version:
latest (1.2.5)
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.8
1.1.7
1.1.6
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.0
JavaScript/TypeScript SDK for interacting with Quantara Protocol on Neura Testnet
@quantara/sdk
/
build
/
types
/
src
/
utils
/
types.d.ts
6 lines
(5 loc)
•
219 B
TypeScript
View Raw
1
2
3
4
5
6
export
declare
const
mustNeverExist
:
(
x
:
never
) =>
never
;
export
declare
const
assertDefined
: <T>
(
x
: T |
undefined
) =>
T;
export
type
DeepPartial
<T> = T
extends
object
? { [P
in
keyof T]?:
DeepPartial
<T[P]>; } : T;