文件操作 - types.ts
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/give/src/Campaigns/Blocks/CampaignGrid/types.ts
编辑文件内容
import { MouseEventHandler } from 'react'; export interface TokenItem { /** * The value of the token. */ value: string; /** * One of 'error', 'validating', or 'success'. Applies styles to token. */ status?: 'error' | 'success' | 'validating'; /** * If not falsey, will add a title to the token. */ title?: string; /** * When true, renders tokens as without a background. */ isBorderless?: boolean; /** * Function to call when onMouseEnter event triggered on token. */ onMouseEnter?: MouseEventHandler<HTMLSpanElement>; /** * Function to call when onMouseLeave is triggered on token. */ onMouseLeave?: MouseEventHandler<HTMLSpanElement>; } export type CampaignGridType = { layout: string; showImage: boolean; showDescription: boolean; showGoal: boolean; showPagination: boolean; sortBy: string; orderBy: string; filterBy: (string | TokenItem)[]; perPage: number; }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件