import { Rule } from "@angular-devkit/schematics"; /** Adds an API endpoint */ export declare function EndpointSchematicFactory(options: EndpointOptions): Rule; /** Options for adding an API endpoint */ export interface EndpointOptions { /** The name of the endpoint */ name: string; /** The HTTP method for the endpoint */ method: string; }