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/notch.d.ts
2020-03-19 15:11:57 +08:00

10 lines
236 B
TypeScript

import { BridgeContext } from "../runtime/global";
export declare function notch(context: BridgeContext): {
inset: () => Promise<{
top: number;
left: number;
bottom: number;
right: number;
}>;
};