505 B
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>;
}>;