loccon
Version:
A simple local context storage and management tool with CLI and web interfaces. Store, search, and organize code snippets, notes, and development contexts with sharded JSON storage.
10 lines • 366 B
TypeScript
export declare class ValidationError extends Error {
constructor(message: string);
}
export declare class Validator {
static validateTag(tag: string): void;
static validateContent(content: string): void;
static validateCategories(categories: string[]): void;
static sanitizeInput(input: string): string;
}
//# sourceMappingURL=validation.d.ts.map