edacation
Version:
Library and CLI for interacting with Yosys and nextpnr.
8 lines (7 loc) • 576 B
TypeScript
import type { IVerilogOptions, ProjectConfiguration, WorkerOptions, WorkerStep } from './configuration.js';
import type { Project } from './project.js';
export type IVerilogStep = WorkerStep;
export type IVerilogWorkerOptions = WorkerOptions<IVerilogStep, IVerilogOptions>;
export declare const parseIVerilogArguments: (args: string[]) => string[];
export declare const getIVerilogOptions: (configuration: ProjectConfiguration, targetId: string) => IVerilogOptions;
export declare const getIVerilogWorkerOptions: (project: Project, targetId: string) => IVerilogWorkerOptions;