microsoft/typespec
Publicmirrored from https://github.com/microsoft/typespecAvailable
packages/events/src/tsp-index.ts
11lines · modecode
| 1 | import { $contentTypeDecorator, $dataDecorator, $eventsDecorator } from "./decorators.js"; |
| 2 | |
| 3 | export { $lib } from "./lib.js"; |
| 4 | export { $onValidate } from "./validate.js"; |
| 5 | export const $decorators = { |
| 6 | "TypeSpec.Events": { |
| 7 | contentType: $contentTypeDecorator, |
| 8 | data: $dataDecorator, |
| 9 | events: $eventsDecorator, |
| 10 | }, |
| 11 | }; |
| 12 | |