spanwright
Version:
CLI tool to generate Cloud Spanner E2E testing framework projects with Go database tools and Playwright browser automation
18 lines • 628 B
TypeScript
import { VALIDATION_PATTERNS } from './constants';
/**
* Basic input escaping for template replacement
*/
export declare function escapeForTemplate(input: string): string;
/**
* Basic template input validation
*/
export declare function validateTemplateInput(input: string, inputType?: keyof typeof VALIDATION_PATTERNS): void;
/**
* Simple template replacement
*/
export declare function simpleTemplateReplace(content: string, replacements: Record<string, string>): string;
/**
* Export patterns for use in other modules
*/
export { VALIDATION_PATTERNS as SAFE_PATTERNS };
//# sourceMappingURL=template-security.d.ts.map