edacation
Version:
Library and CLI for interacting with Yosys and nextpnr.
8 lines (7 loc) • 566 B
TypeScript
import type { FlasherOptions, ProjectConfiguration, WorkerOptions, WorkerStep } from './configuration.js';
import type { Project } from './project.js';
export type FlasherStep = WorkerStep;
export type FlasherWorkerOptions = WorkerOptions<FlasherStep, FlasherOptions>;
export declare const parseFlasherArguments: (args: string[]) => string[];
export declare const getFlasherOptions: (configuration: ProjectConfiguration, targetId: string) => FlasherOptions;
export declare const getFlasherWorkerOptions: (project: Project, targetId: string) => FlasherWorkerOptions;