guilded.ts
Version:
A powerful NPM module that allows you to easily interact with the Guilded API.
15 lines • 401 B
TypeScript
import { Client } from './Client';
/**
* Represents a data model on Guilded.
* @example new Base(client, id);
*/
export declare class Base<Id = string> {
readonly client: Client;
readonly id: Id;
/**
* @param client The client the data model belongs to.
* @param id The ID of the structure.
*/
constructor(client: Client, id: Id);
}
//# sourceMappingURL=Base.d.ts.map