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