Types

Shared TypeScript types for fields, payment methods, and theming.

ThemeVariables

type ThemeVariables = {
    colorPrimary?: string | null;
    colorBackground?: string | null;
    colorInput?: string | null;
    colorForeground?: string | null;
    colorMutedForeground?: string | null;
    colorPlaceholder?: string | null;
    colorBorder?: string | null;
    colorSuccess?: string | null;
    colorError?: string | null;
    focusRing?: string | null;
    shadow?: string | null;
    borderRadius?: string | null;
    fontFamily?: string | null;
    fontSize?: string | null;
};

PaymentMethodType

type PaymentMethodType = "card" | "us_bank_account";

ValueFieldType

type ValueFieldType = "country" | "postalCode" | "name" | "accountType";
Previous
Next

Created by Bias in California