Files
panel/resources/scripts/lib/swr.ts
2023-11-06 04:20:25 +00:00

7 lines
199 B
TypeScript

import { SWRResponse } from 'swr';
// Makes the data property of the SWRResponse not undefined
export type Optimistic<T extends SWRResponse> = Omit<T, 'data'> & {
data: NonNullable<T['data']>
}