Files
solidtime/resources/js/utils/feedback.ts

10 lines
228 B
TypeScript

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