16 lines
464 B
TypeScript
16 lines
464 B
TypeScript
import type { WorksheetDefinition } from './types';
|
|
|
|
export const WORD_TEST_WORKSHEET_DEFINITIONS = [
|
|
{
|
|
id: 'word-test-sheet',
|
|
icon: 'todo-list-o',
|
|
title: '测字表',
|
|
subtitle: '按分类测识字,勾选认识的字',
|
|
ageMin: 5,
|
|
ageMax: 8,
|
|
difficulty: 1,
|
|
tags: ['测字', '识字', '汉字', '一年级'],
|
|
sortOrder: 38,
|
|
},
|
|
] as const satisfies ReadonlyArray<WorksheetDefinition>;
|