Files
form_metacase/node_modules/@schematics/angular/vitest-browser/schema.d.ts
T

17 lines
353 B
TypeScript
Raw Normal View History

2026-03-14 20:41:55 +00:00
export type Schema = {
/**
* The package to be added.
*/
package: string;
/**
* The name of the project.
*/
project: string;
/**
* Skip the automatic installation of packages. You will need to manually install the
* dependencies later.
*/
skipInstall?: boolean;
[property: string]: any;
};