/** * Jsc */ declare class Jsc { readonly projectPath: string; readonly buildPath: string; constructor(projectPath: string, buildPath: string); jsc(): Promise; } export default Jsc;