@skhemata/skhemata-crowdfunding-campaign
Version:
Skhemata Crowdfunding Campaign Web Component. This web component provides crowdfunding campaign functionality (reward/donation based) for a website.
34 lines (33 loc) • 839 B
TypeScript
import { TemplateResult } from '@skhemata/skhemata-base';
import '../skhemata-crowdfunding-campaign.js';
declare const _default: {
title: string;
component: string;
argTypes: {
title: {
control: string;
};
counter: {
control: string;
};
textColor: {
control: string;
};
};
};
export default _default;
interface Story<T> {
(args: T): TemplateResult;
args?: Partial<T>;
argTypes?: Record<string, unknown>;
}
interface ArgTypes {
title?: string;
counter?: number;
textColor?: string;
slot?: TemplateResult;
}
export declare const Regular: Story<ArgTypes>;
export declare const CustomTitle: Story<ArgTypes>;
export declare const CustomCounter: Story<ArgTypes>;
export declare const SlottedContent: Story<ArgTypes>;