Skip to content

Commit

Permalink
chore(client): update api doc
Browse files Browse the repository at this point in the history
  • Loading branch information
javadkh2 committed May 14, 2024
1 parent 0027e75 commit 848557d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/libs/client/etc/client.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ import type { IExecPayload } from '@kadena/types';
import { IKeyPair } from '@kadena/types';
import type { ILocalCommandResult } from '@kadena/chainweb-node-client';
import type { ILocalOptions } from '@kadena/chainweb-node-client';
import { IPactDecimal } from '@kadena/types';
import { IPactInt } from '@kadena/types';
import { IPollResponse } from '@kadena/chainweb-node-client';
import { IPreflightResult } from '@kadena/chainweb-node-client';
import type { ISigningCap } from '@kadena/types';
Expand Down Expand Up @@ -392,6 +394,12 @@ export interface ISingleSignFunction {
(transaction: IUnsignedCommand): Promise<ICommand | IUnsignedCommand>;
}

// @public (undocumented)
export const isIPactDecimal: (arg: unknown) => arg is IPactDecimal;

// @public (undocumented)
export const isIPactInt: (arg: unknown) => arg is IPactInt;

// @public
export function isSignedTransaction(command: IUnsignedCommand | ICommand): command is ICommand;

Expand Down

0 comments on commit 848557d

Please sign in to comment.