UNPKG
@zacksmash/vue-open-ai-apps
Version:
latest (0.0.11)
0.0.11
0.0.10
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
Open AI Apps SDK helpers for Vue
github.com/zacksmash/vue-open-ai-apps
zacksmash/vue-open-ai-apps
@zacksmash/vue-open-ai-apps
/
methods
/
useRequestModal.ts
10 lines
(7 loc)
•
214 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
type
{
RequestModal
}
from
"../types"
;
export
function
useRequestModal
(
) {
const
requestModal
:
RequestModal
=
(
title
:
string
) =>
{
return
window
.
openai
?.
requestModal
(title); };
return
requestModal; }