Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mastodon
GitHub Repository: mastodon/joinmastodon
Path: blob/main/donate/types.ts
1006 views
1
export interface MessageData {
2
source: "donate-widget"
3
action: string
4
}
5
export type Step = "loading" | "choose" | "checkout" | "complete"
6
7
export type Theme = "light" | "dark" | "auto"
8
9