This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-js/lib/src/native/navigator.d.ts

10 lines
348 B
TypeScript
Raw Normal View History

2020-01-03 14:44:51 +08:00
import { BridgeContext } from "../runtime/global";
export declare function navigator(context: BridgeContext): {
push: (source: string, config?: {
2020-01-03 14:44:51 +08:00
alias?: string | undefined;
animated?: boolean | undefined;
extra?: object | undefined;
} | undefined) => Promise<any>;
pop: (animated?: boolean) => Promise<any>;
};