kmap-solve-tree
Version:
Interactively solve mathematical tasks
32 lines (31 loc) • 737 B
TypeScript
import { TemplateResult } from 'lit-html';
import '../src/kmap-solve-tree.js';
declare const _default: {
title: string;
component: string;
argTypes: {
textColor: {
control: string;
};
backgroundColor: {
control: string;
};
borderColor: {
control: string;
};
};
};
export default _default;
interface Story<T> {
(args: T): TemplateResult;
args?: Partial<T>;
argTypes?: Record<string, unknown>;
}
interface ArgTypes {
textColor?: string;
backgroundColor?: string;
borderColor?: string;
slot?: TemplateResult;
}
export declare const Regular: Story<ArgTypes>;
export declare const SlottedContent: Story<ArgTypes>;