mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-02 17:00:08 +00:00
* feat: add embed builder * feat: account for if a parsed color is NaN * feat: add code doc * feat: add example to JSDoc * feat: add ability to override the current embed index * style: remove extra whitespace * feat: add validate method logic * feat: finish remaining todo * fix: account for length value in the setCurrentEmbed call * feat: removing custom error and throw generic * feat: add initial tests * feat: add builder object with embeds function * feat: changing to a method instead of object * feat: add more tests * style: lint
6 lines
161 B
TypeScript
6 lines
161 B
TypeScript
import { EmbedsBuilder } from './builders/embeds.js'
|
|
|
|
export * from './builders/embeds.js'
|
|
|
|
export const createEmbeds = (): EmbedsBuilder => new EmbedsBuilder()
|