kmap-term-tree
Version:
Renders a tree from a mathematical term
38 lines (37 loc) • 815 B
TypeScript
import { TemplateResult } from 'lit-html';
import '../src/kmap-term-tree.js';
declare const _default: {
title: string;
component: string;
argTypes: {
term: {
control: string;
};
textColor: {
control: string;
};
backgroundColor: {
control: string;
};
borderColor: {
control: string;
};
edgeColor: {
control: string;
};
};
};
export default _default;
interface Story<T> {
(args: T): TemplateResult;
args?: Partial<T>;
argTypes?: Record<string, unknown>;
}
interface ArgTypes {
term?: string;
textColor?: string;
backgroundColor?: string;
borderColor?: string;
edgeColor?: string;
}
export declare const Regular: Story<ArgTypes>;