showTitleBar.d.ts 277 B

123456789101112
  1. export interface ShowTitleBarParams {
  2. onSuccess?: () => void;
  3. onFail?: () => void;
  4. }
  5. declare function showTitleBar(): Promise<void>;
  6. declare namespace showTitleBar {
  7. var version: {
  8. android: string;
  9. ios: string;
  10. };
  11. }
  12. export default showTitleBar;