UNPKG
@woogie0303/easyfetch
Version:
latest (0.1.4)
1.0.2
0.1.4
0.1.3
0.1.2
#### [한국어 버전](./README_KO.md)
github.com/woogie0303/easyFetch
woogie0303/easyFetch
@woogie0303/easyfetch
/
src
/
types
/
nextProperty.type.ts
11 lines
(8 loc)
•
243 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
interface
NextFetchRequestConfig
{
revalidate
?:
number
|
false
;
tags
?:
string
[]; }
interface
RequestInitWithNextConfig
extends
globalThis.
RequestInit
{
next
?:
NextFetchRequestConfig
|
undefined
; }
export
{
RequestInitWithNextConfig
};