API > Introduction
interface RequestError { error: string; message: string | string[]; statusCode: number; } interface RequestResult<ResultType> { data: null | ResultType; error: null | RequestError; }