eldenring-api
Version:
Elden Ring API Wrapper
12 lines (11 loc) • 398 B
TypeScript
import { SorceryData } from "../types/sorceries.types";
import { Base } from "./base";
export declare class Sorcery extends Base {
constructor();
/**
* Fetches information about a specific sorcery.
* @param name - The name of the sorcery to fetch information for.
* @returns A Promise that resolves to the sorcery data.
*/
get(name: string): Promise<SorceryData>;
}