mirror of
https://github.com/LukeHagar/varsity.git
synced 2025-12-06 04:22:00 +00:00
Initial commit
This commit is contained in:
31
index.ts
Normal file
31
index.ts
Normal file
@@ -0,0 +1,31 @@
|
||||
// Main functional exports
|
||||
export {
|
||||
validate,
|
||||
parse,
|
||||
generateValidationReport,
|
||||
saveValidationReport,
|
||||
validateMultiple,
|
||||
getSupportedVersions,
|
||||
createVarsity,
|
||||
// Individual module exports
|
||||
parseOpenAPISpec,
|
||||
validateBasicStructure,
|
||||
validateOpenAPISpec,
|
||||
generateReport,
|
||||
saveReport,
|
||||
} from "./src/varsity.js";
|
||||
|
||||
// Type exports
|
||||
export type {
|
||||
ParsedSpec,
|
||||
ValidationResult,
|
||||
ValidationError,
|
||||
ValidationOptions,
|
||||
ReportOptions,
|
||||
VarsityConfig,
|
||||
OpenAPIVersion,
|
||||
CLIResult,
|
||||
} from "./src/types.js";
|
||||
|
||||
// Default export - functional instance
|
||||
export { default } from "./src/varsity.js";
|
||||
Reference in New Issue
Block a user