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 ecc1e47
Show file tree
Hide file tree
Showing 4 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
2 changes: 2 additions & 0 deletions src/sdk/account/utils/Constants.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/** @fileoverview @ignore */

import { type Hex, concat, keccak256, pad, toHex } from "viem"
export const ADDRESS_ZERO = "0x0000000000000000000000000000000000000000"
export const MAGIC_BYTES =
Expand Down
2 changes: 2 additions & 0 deletions src/sdk/account/utils/getAAError.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/** @fileoverview @ignore */

import { BaseError } from "viem"
import type { Service } from ".."
export type KnownError = {
Expand Down
1 change: 1 addition & 0 deletions typedoc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["src/index.ts"],
"exclude": ["src/sdk/account/utils/**/*.ts", "src/sdk/__contracts/**/*.ts"],
"basePath": "src",
"includes": "src",
"out": "docs",
Expand Down

0 comments on commit ecc1e47

Please sign in to comment.