Skip to content

Commit e59e50c

Browse files
committed
fix: keep gesture subcommands internal
1 parent d899152 commit e59e50c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/command-catalog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export const INTERNAL_COMMANDS = {
5454
sessionList: 'session_list',
5555
} as const;
5656

57-
export const GESTURE_SUBCOMMANDS = ['pan', 'fling', 'pinch', 'rotate', 'transform'] as const;
57+
const GESTURE_SUBCOMMANDS = ['pan', 'fling', 'pinch', 'rotate', 'transform'] as const;
5858
export const GESTURE_SUBCOMMAND_ERROR = `gesture requires one of: ${GESTURE_SUBCOMMANDS.join(', ')}`;
5959

6060
export type PublicCommandName = (typeof PUBLIC_COMMANDS)[keyof typeof PUBLIC_COMMANDS];

0 commit comments

Comments
 (0)