export interface RedirectAction { type: 'redirect'; args: { destination: string blank?: boolean appUrl?: boolean }; } export type Action = RedirectAction;