microsoft/typespec

Public

mirrored from https://github.com/microsoft/typespecAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
archive/docusaurus-website

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

packages/http/src/index.ts

25lines · modecode

1export { $lib } from "./lib.js";
2export { $linter } from "./linter.js";
3
4export { HttpPartOptions } from "../generated-defs/TypeSpec.Http.Private.js";
5export * from "./auth.js";
6export * from "./content-types.js";
7export * from "./decorators.js";
8export type { HttpProperty } from "./http-property.js";
9export * from "./metadata.js";
10export * from "./operations.js";
11export { getOperationParameters } from "./parameters.js";
12export {
13 HttpPart,
14 getHttpFileModel,
15 getHttpPart,
16 isHttpFile,
17 isOrExtendsHttpFile,
18} from "./private.decorators.js";
19export * from "./responses.js";
20export * from "./route.js";
21
22export * from "./types.js";
23
24/** @internal */
25export { $decorators } from "./tsp-index.js";
26