mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-05-07 20:32:26 +00:00
10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
export function openFeedback(): void {
|
|
if (
|
|
typeof window !== 'undefined' &&
|
|
'showChatWindow' in window &&
|
|
typeof window.showChatWindow === 'function'
|
|
) {
|
|
window.showChatWindow();
|
|
}
|
|
}
|