23 lines
493 B
Markdown
23 lines
493 B
Markdown
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||
|
|
||
|
[Home](./index.md) > [calckey-js](./calckey-js.md) > [api](./calckey-js.api.md) > [FetchLike](./calckey-js.api.fetchlike.md)
|
||
|
|
||
|
## api.FetchLike type
|
||
|
|
||
|
**Signature:**
|
||
|
|
||
|
```typescript
|
||
|
export declare type FetchLike = (
|
||
|
input: string,
|
||
|
init?: {
|
||
|
method?: string;
|
||
|
body?: string;
|
||
|
credentials?: RequestCredentials;
|
||
|
cache?: RequestCache;
|
||
|
},
|
||
|
) => Promise<{
|
||
|
status: number;
|
||
|
json(): Promise<any>;
|
||
|
}>;
|
||
|
```
|