Files
2026-07-26 12:29:43 +09:00

505 B

Home > iceshrimp-sdk > api > FetchLike

api.FetchLike type

Signature:

export type FetchLike = (input: string, init?: {
    method?: string;
    body?: string;
    credentials?: RequestCredentials;
    cache?: RequestCache;
}) => Promise<{
    status: number;
    json(): Promise<any>;
}>;