You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
842 B

import { type ProjectConfiguration, type Tree } from '@nx/devkit';
import type { Expression, ObjectLiteralExpression, PropertyAssignment } from 'typescript';
export declare function cypressProjectConfigs(tree: Tree): AsyncGenerator<{
projectName: string;
projectConfig: ProjectConfiguration;
cypressConfigPath: string;
}>;
export declare function getObjectProperty(config: ObjectLiteralExpression, name: string): PropertyAssignment | undefined;
export declare function removeObjectProperty(config: ObjectLiteralExpression, property: PropertyAssignment): ObjectLiteralExpression;
export declare function updateObjectProperty(config: ObjectLiteralExpression, property: PropertyAssignment, { newName, newValue }: {
newName?: string;
newValue?: Expression;
}): ObjectLiteralExpression;
//# sourceMappingURL=migrations.d.ts.map