Skip to content

Instantly share code, notes, and snippets.

@majirosstefan
Created February 25, 2024 10:40
Show Gist options
  • Save majirosstefan/d973a26982884222037ddc47e439348a to your computer and use it in GitHub Desktop.
Save majirosstefan/d973a26982884222037ddc47e439348a to your computer and use it in GitHub Desktop.
taken from Stripe (RN lib)
declare type ClientSecretParams = {
paymentIntentClientSecret: string;
setupIntentClientSecret?: undefined;
} | {
setupIntentClientSecret: string;
paymentIntentClientSecret?: undefined;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment