File "WPApi.js"
Full Path: /home/leadltht/fastlinkinternet.com/admin/wp-content/wp-content/wp-content/plugins/extendify/src/Library/api/WPApi.js
File size: 221 bytes
MIME-type: text/x-java
Charset: utf-8
import apiFetch from '@wordpress/api-fetch';
export const updateOption = async (option, value) =>
await apiFetch({
path: '/extendify/v1/library/settings/single',
method: 'POST',
data: { key: option, value },
});