Interface ConfiglessCaller<Root>

Call an API with or without any additional configuration

interface ConfiglessCaller<Root> {
    (): APIResponse<Root, CallerConfig<Root>>;
    <Config>(config): APIResponse<Root, Config>;
}

Type Parameters