nx/graph/client/src/app/machines/externalApi.ts

10 lines
243 B
TypeScript

import { getDepGraphService } from './dep-graph.service';
export class ExternalApi {
depGraphService = getDepGraphService();
focusProject(projectName: string) {
this.depGraphService.send({ type: 'focusProject', projectName });
}
}