[@types/stripe] Fixed StripeWebhookEvent.created to be a number

The data received by a webhook endpoint is an almost identical object to the [Event Object](https://stripe.com/docs/api#event_object-created).
This commit is contained in:
Tyler Jones
2018-09-17 23:01:39 -07:00
committed by GitHub
parent b697ec8a1b
commit 66a413cd38

View File

@@ -3627,7 +3627,7 @@ declare namespace Stripe {
id: string;
object: string;
api_version: string;
created: Date;
created: number;
data: {
object: T;
};