@skillpet/circuit
Version:
Circuit diagram library — render electrical schematics from JSON, with interactive SVG, themes, and Vue/React components
16 lines (15 loc) • 411 B
TypeScript
import { Element } from "../element.js";
export interface KmapGroupStyle {
color?: string;
fill?: string | boolean;
lw?: number;
ls?: string;
}
export declare class Kmap extends Element {
constructor(userParams?: Record<string, unknown> & {
names?: string;
truthtable?: [string, string][];
groups?: Record<string, KmapGroupStyle>;
default?: string;
});
}