mirror of
https://github.com/supabase/supabase.git
synced 2026-05-31 18:03:33 +08:00
21 lines
475 B
TypeScript
21 lines
475 B
TypeScript
interface DataProps {
|
|
referrer?: string
|
|
title: string
|
|
route?: string
|
|
}
|
|
|
|
export const post = (url: string, data: DataProps, options = {}) => {
|
|
return fetch(url, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
Accept: 'application/json',
|
|
},
|
|
referrerPolicy: 'no-referrer-when-downgrade',
|
|
body: JSON.stringify(data),
|
|
...options,
|
|
}).catch((error) => {
|
|
console.error('Error at fetchWrapper - post:', error)
|
|
})
|
|
}
|