@globexit/websoft-types
Version:
<h1 align="center">Websoft Types</h1> <div align="center"> Typescript типы и трансформеры для WebSoft HCM.
15 lines (14 loc) • 552 B
TypeScript
import { TransformerConfigurator } from "../transformers/transformer-configurator";
import { ImportManager } from "../core/utils/import-manager";
export declare class SsjsProjectBuilder {
private readonly _transformerConfigurator;
private readonly _importManager;
private readonly _morphProject;
constructor();
setProjectLocationRelativeServerFolder(path: string): this;
setTsConfigPath(path: string): this;
build(): {
transformerConfigurator: TransformerConfigurator;
importManager: ImportManager;
};
}