chore: spacing

This commit is contained in:
Daniel Roe 2024-02-25 10:29:40 +00:00 committed by GitHub
parent 3366268fb7
commit 2d66709932
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -103,12 +103,12 @@ export interface AsyncDataExecuteOptions {
* Instead of using `boolean` values, use `cancel` for `true` and `defer` for `false`.
* Boolean values will be removed in a future release.
*/
dedupe?: boolean | 'cancel' | 'defer',
dedupe?: boolean | 'cancel' | 'defer'
/**
* Do not use potentially cached data from getCachedData and perform a new request
* @default false
*/
force?: boolean,
force?: boolean
}
export interface _AsyncData<DataT, ErrorT> {