2024-04-21 23:36:26 +08:00

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
};