UNPKG

@typespec/http-server-js

Version:

TypeSpec HTTP server code generator for JavaScript

10 lines 517 B
import { Interface, Model, ModelProperty, Operation } from "@typespec/compiler"; /** * Recursively collects all properties of a model, including inherited properties. */ export declare function getAllProperties(model: Model, visited?: Set<Model>): ModelProperty[]; /** * Recursively collects all operations in an interface, including those inherited from source interfaces. */ export declare function getAllOperations(iface: Interface, visited?: Set<Interface>): Operation[]; //# sourceMappingURL=extends.d.ts.map