• 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
  • Searchbar.ets
  • 编排底层能力 · 70e1ec95
    70e1ec95 Browse Files
    liujian1_wd authored 2024-01-10 12:52:46 +0800
Searchbar.ets 273 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/**
 * 搜索bar数据
 */
import { Action } from './Action';

export interface Searchbar {
  defaultSearchText: string;
  voiceAction: Action;
  searchAction: Action;
  lightVoiceIcon: string;
  lightSearchIcon: string;
  darkVoiceIcon: string;
  darkSearchIcon: string;
}