Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
449 Bytes
import type { useLocation } from 'react-router'
export const DRAWER_PREROUTE_SET = 'DRAWER_PREROUTE_SET'
export type SetDrawerPreRouteResponse = {
type: typeof DRAWER_PREROUTE_SET
data: {
previousRoute: Partial<ReturnType<typeof useLocation>> | null
}
}
export const setDrawerPreRoute = (data: {
previousRoute: Partial<ReturnType<typeof useLocation>> | null
}): SetDrawerPreRouteResponse => ({
type: DRAWER_PREROUTE_SET,
data,
})