trashposs/packages/trashposs-js/markdown/trashposs-js.api.fetchlike.md
2024-04-06 22:57:52 +02:00

23 lines
523 B
Markdown

<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [trashposs-js](./trashposs-js.md) &gt; [api](./trashposs-js.api.md) &gt; [FetchLike](./trashposs-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>;
}>;
```