From ecc1e471f952ae59f0ced31e64b0dbd7039e0912 Mon Sep 17 00:00:00 2001 From: Joe Pegler Date: Thu, 19 Sep 2024 12:54:05 +0100 Subject: [PATCH] chore: tsdoc - ignore helpers --- src/sdk/account/utils/AccountNotFound.ts | 3 +++ src/sdk/account/utils/Constants.ts | 2 ++ src/sdk/account/utils/getAAError.ts | 2 ++ typedoc.json | 1 + 4 files changed, 8 insertions(+) diff --git a/src/sdk/account/utils/AccountNotFound.ts b/src/sdk/account/utils/AccountNotFound.ts index 3547d09fa..e373fcac3 100644 --- a/src/sdk/account/utils/AccountNotFound.ts +++ b/src/sdk/account/utils/AccountNotFound.ts @@ -1,5 +1,8 @@ import { BaseError } from "viem" +/** + * @ignore + */ export class AccountNotFoundError extends BaseError { constructor({ docsPath }: { docsPath?: string | undefined } = {}) { super( diff --git a/src/sdk/account/utils/Constants.ts b/src/sdk/account/utils/Constants.ts index 19b692682..f924bf0a2 100644 --- a/src/sdk/account/utils/Constants.ts +++ b/src/sdk/account/utils/Constants.ts @@ -1,3 +1,5 @@ +/** @fileoverview @ignore */ + import { type Hex, concat, keccak256, pad, toHex } from "viem" export const ADDRESS_ZERO = "0x0000000000000000000000000000000000000000" export const MAGIC_BYTES = diff --git a/src/sdk/account/utils/getAAError.ts b/src/sdk/account/utils/getAAError.ts index 8be4806c0..4bc5220d7 100644 --- a/src/sdk/account/utils/getAAError.ts +++ b/src/sdk/account/utils/getAAError.ts @@ -1,3 +1,5 @@ +/** @fileoverview @ignore */ + import { BaseError } from "viem" import type { Service } from ".." export type KnownError = { diff --git a/typedoc.json b/typedoc.json index 6a717b22a..69103ea2a 100644 --- a/typedoc.json +++ b/typedoc.json @@ -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",