tiny-essentials
Version:
Collection of small, essential scripts designed to be used across various projects. These simple utilities are crafted for speed, ease of use, and versatility.
28 lines • 678 B
text/typescript
export default config;
/**
* Configuration object containing Discord API and OAuth2 URLs.
*/
export type Config = {
/**
* - The base URL for the Discord API.
*/
url: string;
/**
* - The OAuth2 authorization URL for Discord.
*/
oauth2: string;
};
/**
* Configuration object containing Discord API and OAuth2 URLs.
*
* @typedef {Object} Config
* @property {string} url - The base URL for the Discord API.
* @property {string} oauth2 - The OAuth2 authorization URL for Discord.
*/
/**
* The configuration object for the Discord API and OAuth2.
*
* @type {Config}
*/
declare const config: Config;
//# sourceMappingURL=config.d.mts.map