Skip to content

Commit

Permalink
fix: update UseAssetsStatus import in UseAssetsResult
Browse files Browse the repository at this point in the history
  • Loading branch information
trezy committed Aug 1, 2024
1 parent d8add6c commit 49f6cf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/typedefs/UseAssetsResult.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { type UseAssetsStatus } from './UseAssetsStatus.ts';
import type { UseAssetsStatus } from '../constants/UseAssetsStatus.ts';

export interface UseAssetsResult<T>
{
Expand All @@ -18,5 +18,5 @@ export interface UseAssetsResult<T>
isSuccess: boolean;

/** @description The current loading status of these assets. */
status: UseAssetsStatus;
status: Lowercase<keyof typeof UseAssetsStatus>;
}

0 comments on commit 49f6cf2

Please sign in to comment.