-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docs and typedoc integration #38
Conversation
Signed-off-by: lovesh <[email protected]>
Signed-off-by: lovesh <[email protected]>
src/anonymous-credentials/schema.ts
Outdated
useDefaults: boolean; | ||
defaultMinimumInteger: number; | ||
defaultMinimumDate: number; | ||
defaultDecimalPlaces: number; | ||
} | ||
|
||
export const DefaultSchemaParsingOpts: ISchemaParsingOpts = { | ||
useDefaults: false, | ||
useDefaults: false, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the space here at the beginning of the line intended?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No.
@@ -20,10 +20,10 @@ export class Responses extends BytearrayWrapper {} | |||
|
|||
export class HashedKeys extends BytearrayWrapper {} | |||
|
|||
export class Participant { | |||
// Id of this participant | |||
export class BaseOTParticipant { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is probably my lack of understanding here, but I don't see this class BaseOTParticipant
used anywhere in the tests or in other places in the code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In threshold sig test.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now, I see. thanks! 👍
@lovesh Great PR! and special thanks for all the documentation on the anonymous credentials. I didn't manage to go through it all, but I'll take some time later to try the examples. |
Signed-off-by: lovesh <[email protected]>
No description provided.