Files
solidtime/resources/js/utils/feedback.ts
2025-10-01 13:20:23 +02:00

10 lines
228 B
TypeScript

export function openFeedback(): void {
if (
typeof window !== 'undefined' &&
'showChatWindow' in window &&
typeof window.showChatWindow === 'function'
) {
window.showChatWindow();
}
}