Skip to content

Commit

Permalink
docs: ignore type error in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
imranbarbhuiya committed Sep 23, 2022
1 parent 98dc7ff commit 46811a4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
3 changes: 2 additions & 1 deletion src/lib/pagination/PaginationEmbed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,8 @@ export abstract class PaginationEmbed extends EmbedBuilder {

/**
* Adds multiple pagination embeds.
* @param embeds An array of {@link EmbedBuilder} or {@link EmbedBuilderOptions}
* @param embeds An array of [EmbedBuilder](https://discord.js.org/#/docs/discord.`js/main/class/EmbedBuilder)
* or [APIEmbed](https://discord-api-types.dev/api/discord-api-types-v10/interface/APIEmbed)
* @param template A template function that will be called for each embed.
* @returns
* @example
Expand Down
11 changes: 6 additions & 5 deletions typedoc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"out": "./docs/",
"readme": "./README.md",
"name": "Pagination",
"entryPoints": ["src/index.ts"],
"tsconfig": "./src/tsconfig.json"
"out": "./docs/",
"readme": "./README.md",
"name": "Pagination",
"entryPoints": ["src/index.ts"],
"tsconfig": "./src/tsconfig.json",
"skipErrorChecking": true
}

0 comments on commit 46811a4

Please sign in to comment.