• This project
    • Loading...
  • Sign in

developOne / harmonyPool

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • harmonyPool
  • ..
  • bean
  • Action.ts
  • 人民日报-init: · 68c2de50 ...
    68c2de50 Browse Files
    模块:
    entry:入口模块
    wdKit:工具类模块
    wdConstant:全局常量模块,包括枚举值
    wdComponent:基础组件模块
    wdNetwork:网络模块
    fanmingyou3_wd authored 2024-01-17 20:30:40 +0800
Action.ts 131 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7
import { Params } from './Params';

//  事件对象
export interface Action {
  type: string;
  params?: Params; // 参数集合
}