Skip to content

Commit

Permalink
add string[] to type union of isith and nsith
Browse files Browse the repository at this point in the history
  • Loading branch information
psteniusubi authored and m00sey committed Sep 8, 2023
1 parent 499d060 commit 51db099
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/keri/app/signify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -441,8 +441,8 @@ export class SignifyClient {
/** Arguments required to create an identfier */
export interface CreateIdentiferArgs {
transferable?: boolean,
isith?: string | number,
nsith?: string | number,
isith?: string | number | string[],
nsith?: string | number | string[],
wits?: string[],
toad?: number,
proxy?: string,
Expand All @@ -467,7 +467,7 @@ export interface CreateIdentiferArgs {
/** Arguments required to rotate an identfier */
export interface RotateIdentifierArgs {
transferable?: boolean,
nsith?: string | number,
nsith?: string | number | string[],
toad?: number,
cuts?: string[],
adds?: string[],
Expand Down

0 comments on commit 51db099

Please sign in to comment.