19 lines
350 B
TypeScript
19 lines
350 B
TypeScript
import { opeParam, OpeParamDefaults } from './opeParam';
|
|
import { PrjInfo, PrjInfoDefaults } from './prjInfo';
|
|
|
|
import * as Enum from './enum';
|
|
import * as Lang from './lang';
|
|
|
|
type AbsPath = string;
|
|
type RelPath = string;
|
|
|
|
export {
|
|
opeParam,
|
|
OpeParamDefaults,
|
|
PrjInfo,
|
|
PrjInfoDefaults,
|
|
Enum,
|
|
Lang,
|
|
AbsPath,
|
|
RelPath
|
|
}; |