Skip to content

Commit

Permalink
chore: tsdoc - ignore helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
joepegler committed Sep 19, 2024
1 parent 427ce0e commit 9d8ec81
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/sdk/account/utils/AccountNotFound.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import { BaseError } from "viem"

/**
* @ignore
*/
export class AccountNotFoundError extends BaseError {
constructor({ docsPath }: { docsPath?: string | undefined } = {}) {
super(
Expand Down
5 changes: 5 additions & 0 deletions typedoc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["src/index.ts"],
"exclude": [
"src/sdk/account/utils/**/*.ts",
"src/sdk/__contracts/**/*.ts",
"src/test/**/*.ts"
],
"basePath": "src",
"includes": "src",
"out": "docs",
Expand Down

0 comments on commit 9d8ec81

Please sign in to comment.