File size: 204 Bytes
ce25387
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import type { PlatformShell } from '../../core/platform/types'

export const browserShell: PlatformShell = {
  openExternal: (url: string) => {
    window.open(url, '_blank', 'noopener,noreferrer')
  }
}