UNPKG

@ordojs/security

Version:

Security package for OrdoJS with XSS, CSRF, and injection protection

13 lines 632 B
/** * Input Validation Example * Demonstrates how to use the comprehensive input validation system */ declare function basicValidationExample(): void; declare function sqlInjectionExample(): void; declare function pathTraversalExample(): void; declare function rateLimitingExample(): Promise<void>; declare function customRulesExample(): void; declare function comprehensiveExample(): void; declare function runExamples(): Promise<void>; export { basicValidationExample, comprehensiveExample, customRulesExample, pathTraversalExample, rateLimitingExample, runExamples, sqlInjectionExample }; //# sourceMappingURL=example.d.ts.map