fix merge main (prettier)

This commit is contained in:
daishi 2024-06-26 18:09:23 +09:00
parent e4e0c7f684
commit a80061bee2

View File

@ -22,7 +22,9 @@ type ReadonlyStoreApi<T> = Pick<
>
const identity = <T>(arg: T): T => arg
export function useStore<S extends ReadonlyStoreApi<unknown>>(api: S): ExtractState<S>
export function useStore<S extends ReadonlyStoreApi<unknown>>(
api: S,
): ExtractState<S>
export function useStore<S extends ReadonlyStoreApi<unknown>, U>(
api: S,