UNPKG

@stripe/ui-extension-sdk

Version:

The suite of functionality available to UI extensions in Stripe apps

8 lines (7 loc) 179 B
type JSONValue = string | number | boolean | null | JSONValue[] | { [key: string]: JSONValue; }; export type NestableJSONValue = { [key: string]: JSONValue; }; export {};