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/popover.d.ts
2020-01-03 17:05:24 +08:00

7 lines
244 B
TypeScript

import { BridgeContext } from "../runtime/global";
import { View } from "../ui/view";
export declare function popover(context: BridgeContext): {
show: (view: View) => Promise<any>;
dismiss: (view?: View | undefined) => Promise<any>;
};