19 lines
435 B
TypeScript
19 lines
435 B
TypeScript
export interface FocusFunctionType {
|
|
id: string;
|
|
page?: string;
|
|
title: string;
|
|
desc: string;
|
|
icon: string;
|
|
}
|
|
|
|
export const FOCUS_FUNCTION_TYPES: FocusFunctionType[] = [
|
|
// 第一阶段:认识数字(最基础)
|
|
{
|
|
id: 'number-find',
|
|
page: 'numberFind',
|
|
title: '找数字,涂一涂',
|
|
desc: '找一找下面相同的数字,涂上颜色',
|
|
icon: '🔍',
|
|
},
|
|
];
|