Tldraw/packages/editor/src/lib/utils/window-open.ts

7 wiersze
148 B
TypeScript

import { runtime } from './runtime'
/** @public */
export function openWindow(url: string, target = '_blank') {
runtime.openWindow(url, target)
}