@nakedved/ano
Version:
Claude Code plugin for collaborative annotation and review
19 lines (18 loc) • 695 B
TypeScript
/**
* Annotation management commands
*
* Additional commands for managing annotations.
*
* Usage:
* ano reply <file> <id> "message" Add a threaded reply
* ano delete <file> <id> Delete an annotation
* ano sync <file> Sync annotations after file changes
* ano export <file> [output] Export annotations to JSON
* ano import <file> <source> Import annotations from JSON
*/
import { Command } from 'commander';
export declare const replyCommand: Command;
export declare const deleteCommand: Command;
export declare const syncCommand: Command;
export declare const exportCommand: Command;
export declare const importCommand: Command;