Skip to content

Commit

Permalink
Fix flow typing
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Polo authored and hyochan committed May 11, 2019
1 parent ad192bb commit edc4831
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions index.js.flow
Original file line number Diff line number Diff line change
Expand Up @@ -98,27 +98,27 @@ declare type PaymentDiscount = {
/**
* A string used to uniquely identify a discount offer for a product.
*/
identifier: string
identifier: string,

/**
* A string that identifies the key used to generate the signature.
*/
keyIdentifier: string
keyIdentifier: string,

/**
* A universally unique ID (UUID) value that you define.
*/
nonce: string
nonce: string,

/**
* A UTF-8 string representing the properties of a specific discount offer, cryptographically signed.
*/
signature: string
signature: string,

/**
* The date and time of the signature's creation in milliseconds, formatted in Unix epoch time.
*/
timestamp: number
timestamp: number,
}


Expand Down

0 comments on commit edc4831

Please sign in to comment.