@stripe/ui-extension-sdk
Version:
The suite of functionality available to UI extensions in Stripe apps
11 lines (10 loc) • 299 B
TypeScript
import { SerializableResponse } from './apiFetch';
type Result = {
email: string;
};
type Response = SerializableResponse & Result & {
json: Result;
};
export type GetDashboardUserEmail = () => Promise<Response>;
export declare const getDashboardUserEmail: GetDashboardUserEmail;
export {};