UNPKG

edacation

Version:

Library and CLI for interacting with Yosys and nextpnr.

9 lines (8 loc) 269 B
export interface ElementGroup { name: string; sorting: number; color: string; elements: string[]; } export declare const getElementGroups: () => Map<string, ElementGroup>; export declare const getElementGroup: (primName: string) => ElementGroup | null;