sveltemeacoffee
Version:
Fully Configurable Buy Me A Coffee button in svelte
26 lines (25 loc) • 915 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
text?: string | null | undefined;
bgColor?: string | undefined;
coffeeColor?: string | undefined;
outlineColor?: string | undefined;
textColor?: string | undefined;
fontFamily?: string | null | undefined;
fontVariant?: string | null | undefined;
height?: string | undefined;
width?: string | undefined;
scale?: number | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export declare type BuyMeACoffeeProps = typeof __propDef.props;
export declare type BuyMeACoffeeEvents = typeof __propDef.events;
export declare type BuyMeACoffeeSlots = typeof __propDef.slots;
export default class BuyMeACoffee extends SvelteComponentTyped<BuyMeACoffeeProps, BuyMeACoffeeEvents, BuyMeACoffeeSlots> {
}
export {};