-module(tallgrass@client@ability). -compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]). -export([fetch_by_id/1, fetch_by_name/1]). -spec fetch_by_id(integer()) -> {ok, tallgrass@internal@pokemon@ability@ability:ability()} | {error, tallgrass@internal@http@error:error()}. fetch_by_id(Id) -> tallgrass@internal@pokemon@ability@client:fetch_by_id(Id). -spec fetch_by_name(binary()) -> {ok, tallgrass@internal@pokemon@ability@ability:ability()} | {error, tallgrass@internal@http@error:error()}. fetch_by_name(Name) -> tallgrass@internal@pokemon@ability@client:fetch_by_name(Name).