kutt
Version:
Node.js & browser (TypeScript) client for Kutt url shortener
21 lines (20 loc) • 402 B
TypeScript
import API from "#src/API";
/**
*
* @see {@link https://docs.kutt.it/#tag/health}
* @example
* const health = new Health(config);
*/
export default class Health extends API {
/**
*
* @protected
*/
protected readonly prefix = "/health";
/**
* Checks API health.
* @example
* const isHealthy = await health.check();
*/
check(): Promise<boolean>;
}