Skip to content

Commit

Permalink
Updated DotNetNormalized arguments test
Browse files Browse the repository at this point in the history
  • Loading branch information
badcommandorfilename committed Oct 14, 2021
1 parent 907c674 commit feaeb4f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ namespace Examples
}

public ExampleClass(
string @ref, string @lock, string @unlock, string @object, string @event, string @bool, string @virtual
string @ref, string @lock, string @unlock, string @object, string @event, string @bool, string @virtual, string @string, string @params
)
{
var entity = EventHorizonBlazorInterop.New(
new string[] { "Examples", "ExampleClass" },
@ref, @lock, @unlock, @object, @event, @bool, @virtual
@ref, @lock, @unlock, @object, @event, @bool, @virtual, @string, @params
);
___guid = entity.___guid;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ declare module Examples {
object: string,
event: string,
bool: string,
virtual: string);
virtual: string,
string: string,
params: string
);
}
}

0 comments on commit feaeb4f

Please sign in to comment.