UNPKG

ng-yunzai-mobile

Version:

1. 适配yunzai_uni_app_x

16 lines (15 loc) 442 B
export interface NavigationBar { showMenu: boolean; shareFlag: boolean; items: Array<MyNavigationBar>; onClick: (clickId: string) => void; success?: (msg: string) => void; fial?: (err: string) => void; complete?: (msg: string) => void; } export interface MyNavigationBar { type: string; title: string; icon: 'add' | 'edit' | 'delete' | 'search' | 'done' | 'send'; clickId: string; }