@ordojs/security
Version:
Security package for OrdoJS with XSS, CSRF, and injection protection
11 lines • 480 B
TypeScript
/**
* CSRF Protection Usage Example
* Demonstrates how to use the CSRF protection system
*/
declare function sessionBasedExample(): void;
declare function doubleSubmitExample(): void;
declare function clientSideExample(): void;
declare function expressMiddlewareExample(): void;
declare function statisticsExample(): void;
export { clientSideExample, doubleSubmitExample, expressMiddlewareExample, sessionBasedExample, statisticsExample };
//# sourceMappingURL=example.d.ts.map