3 lines
123 B
TypeScript
3 lines
123 B
TypeScript
export * from 'jotai/vanilla';
|
|
export * from 'jotai/react';
|
|
declare type Awaited<T> = T extends Promise<infer V> ? V : T; |