[Home](./index.md) > [trashposs-js](./trashposs-js.md) > [api](./trashposs-js.api.md) > [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; }>; ```