UNPKG

@cocalc/server

Version:

CoCalc server functionality: functions used by either the hub and the next.js server

7 lines (6 loc) 193 B
import Stripe from "stripe"; interface StripeWithPublishableKey extends Stripe { publishable_key: string; } export default function getConn(): Promise<StripeWithPublishableKey>; export {};