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; }