2024-09-23 20:56:46 +08:00

37 lines
714 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';
import { LspClient } from './lsp';
type AbsPath = string;
type RelPath = string;
type AllowNull<T> = T | null;
interface IProgress {
message?: string,
increment?: number
}
export {
opeParam,
OpeParamDefaults,
PrjInfo,
PrjInfoDefaults,
Enum,
Lang,
AbsPath,
RelPath,
MainOutput,
LspOutput,
YosysOutput,
WaveViewOutput,
ReportType,
AllowNull,
LspClient,
IProgress
};