• 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
  • ..
  • programme
  • Action.ts
  • 把DevEco3.1的PeopleDaily_Harmony中的代码合并到DevEco4.0的sight_harmony中 · 0a7cbd64
    0a7cbd64 Browse Files
    fanmingyou3_wd authored 2024-01-31 01:48:49 +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; // 参数集合
}