/** * Type emitter - Public API */ export { emitTypeAst } from "./emitter.js"; export { emitTypeParametersAst, emitParameterType } from "./parameters.js"; export { emitPrimitiveType } from "./primitives.js"; export { emitReferenceType } from "./references.js"; export { emitArrayType } from "./arrays.js"; export { emitFunctionType } from "./functions.js"; export { emitObjectType } from "./objects.js"; export { emitUnionType } from "./unions.js"; export { emitIntersectionType } from "./intersections.js"; export { emitLiteralType } from "./literals.js"; //# sourceMappingURL=index.d.ts.map