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
2020-02-19 19:54:10 +08:00

10 lines
348 B
TypeScript

import { BridgeContext } from "../runtime/global";
export declare function navigator(context: BridgeContext): {
push: (source: string, config?: {
alias?: string | undefined;
animated?: boolean | undefined;
extra?: object | undefined;
} | undefined) => Promise<any>;
pop: (animated?: boolean) => Promise<any>;
};