Tldraw/apps/vscode/editor/src/utils/url.ts

9 wiersze
167 B
TypeScript

import { vscode } from './vscode'
export function openUrl(url: string) {
vscode.postMessage({
type: 'vscode:open-window',
data: { url, target: '_blank' },
})
}