11 lines
225 B
TypeScript
11 lines
225 B
TypeScript
![]() |
import { ofetch } from 'ofetch';
|
||
|
import type { FetchOptions } from 'ofetch';
|
||
|
|
||
|
export function createOfetch(options: FetchOptions) {
|
||
|
const request = ofetch.create(options);
|
||
|
|
||
|
return request;
|
||
|
}
|
||
|
|
||
|
export default createOfetch;
|