blob: 25dbd14871cb5c3309f5175cff49d3a8dec0f56e (
plain)
1
2
3
4
5
6
7
|
import type { Action, ExternalUrlAction } from '@jet-app/app-store/api/models';
export function isExternalUrlAction(
action: Action,
): action is ExternalUrlAction {
return action.$kind === 'ExternalUrlAction';
}
|