mirror of
https://github.com/hansputera/tiktok-dl.git
synced 2026-04-06 04:01:57 +02:00
16 lines
290 B
TypeScript
16 lines
290 B
TypeScript
import got, {ExtendOptions} from 'got';
|
|
|
|
export const fetch = got.extend({
|
|
prefixUrl: 'https://www.tiktok.com',
|
|
dnsCache: true,
|
|
});
|
|
|
|
|
|
export const getFetch = (baseUrl: string, options?: ExtendOptions) =>
|
|
got.extend({
|
|
prefixUrl: baseUrl,
|
|
dnsCache: true,
|
|
...options,
|
|
});
|
|
|