UNPKG

@neo-one/server-plugin-project

Version:

NEO•ONE server plugin for project functionality.

22 lines (21 loc) 627 B
import { ProjectConfig } from '../types'; export declare const getCommonPaths: (project: ProjectConfig) => { sourceMapsPath: string; testPath: string; commonTypesPath: string; reactPath: string; angularPath: string; vuePath: string; clientPath: string; projectIDPath: string; generatedPath: string; }; export declare const getContractPaths: (project: ProjectConfig, contractResult: { readonly filePath: string; readonly name: string; }) => { typesPath: string; abiPath: string; createContractPath: string; }; export declare const getTSPath: (filePath: string) => string;