Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 | 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x | import { defineCommand } from '../../lib/define-command.js';
import { openBrowser } from '../../models/utils.js';
export const profileOpenCommand = defineCommand({
description: 'Open your profile in the Console',
since: '3.11.0',
options: {},
args: [],
async handler() {
await openBrowser('/users/me/information', 'Opening the profile page in the browser…');
},
});
|