summaryrefslogtreecommitdiff
path: root/packages/frontend/src/pages/page-editor/common.ts
blob: 420c8fc967eb4ee2fe509ac355ee607f5a4e4ea6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * SPDX-FileCopyrightText: syuilo and misskey-project
 * SPDX-License-Identifier: AGPL-3.0-only
 */

import { i18n } from '@/i18n.js';

export function getPageBlockList() {
	return [
		{ value: 'section', text: i18n.ts._pages.blocks.section },
		{ value: 'text', text: i18n.ts._pages.blocks.text },
		{ value: 'image', text: i18n.ts._pages.blocks.image },
		{ value: 'note', text: i18n.ts._pages.blocks.note },
	];
}