28 lines
578 B
TypeScript
28 lines
578 B
TypeScript
import { opeParam, OpeParamDefaults } from './opeParam';
|
|
import { PrjInfo, PrjInfoDefaults } from './prjInfo';
|
|
import { MainOutput, LspOutput, YosysOutput, WaveViewOutput, ReportType } from './outputChannel';
|
|
|
|
import * as Enum from './enum';
|
|
import * as Lang from './lang';
|
|
|
|
type AbsPath = string;
|
|
type RelPath = string;
|
|
|
|
type AllowNull<T> = T | null;
|
|
|
|
export {
|
|
opeParam,
|
|
OpeParamDefaults,
|
|
PrjInfo,
|
|
PrjInfoDefaults,
|
|
Enum,
|
|
Lang,
|
|
AbsPath,
|
|
RelPath,
|
|
MainOutput,
|
|
LspOutput,
|
|
YosysOutput,
|
|
WaveViewOutput,
|
|
ReportType,
|
|
AllowNull
|
|
}; |