Files
doodle-mini/miniprogram/constants/focusFunctions.ts
T
2025-12-11 17:47:22 +08:00

19 lines
398 B
TypeScript

export interface FocusFunctionType {
id: string;
page?: string;
title: string;
desc: string;
icon: string;
}
export const FOCUS_FUNCTION_TYPES: FocusFunctionType[] = [
// 格子仿画
{
id: 'grid-drawing',
page: 'gridDrawing',
title: '格子仿画',
desc: '在网格中填充颜色,形成各种形状',
icon: '🎨',
},
];