@domoinc/ryuu-angular
Version:
Angular Schematic to add @domoinc/ryuu-proxy support
12 lines (11 loc) • 398 B
TypeScript
import { Rule } from '@angular-devkit/schematics';
export interface Schema {
project?: string;
output?: string;
}
/**
* Angular schematic rule that adds dependencies and configuration to an Angular project.
* @param {any} _options - The options for the schematic.
* @returns {Rule} - A rule function that modifies the project tree.
*/
export declare function ngAdd(options: any): Rule;