trufflesuite/truffle

View on GitHub
packages/codec-components/src/utils/type-guards/decoder-error/code-not-supplied-error.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { Format } from "@truffle/codec";
import { decoderErrorTypeGuardHelper } from "./helper";

export const [isCodeNotSuppliedError, codeNotSuppliedErrorKinds] =
  decoderErrorTypeGuardHelper<Format.Errors.CodeNotSuppliedError>(
    "CodeNotSuppliedError"
  );