File size: 307 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 |
import { recordTracksEvent } from '@automattic/calypso-analytics';
export const recordCommandPaletteOpen = (
currentRoute: string,
openType: 'keyboard' | 'sidebar_click'
) => {
recordTracksEvent( 'calypso_hosting_command_palette_open', {
current_route: currentRoute,
opened_with: openType,
} );
};
|