this repo has no description
at main 7 lines 222 B view raw
1import type { Action, ExternalUrlAction } from '@jet-app/app-store/api/models'; 2 3export function isExternalUrlAction( 4 action: Action, 5): action is ExternalUrlAction { 6 return action.$kind === 'ExternalUrlAction'; 7}