Commit 3a5be96d authored by Gage Vander Clay's avatar Gage Vander Clay

Add typescript types

parent f8a8e98a
declare type Dimensions =
| "REAL_WINDOW_HEIGHT"
| "REAL_WINDOW_WIDTH"
| "STATUS_BAR_HEIGHT"
| "SOFT_MENU_BAR_HEIGHT"
| "SMART_BAR_HEIGHT";
declare interface ExtraDimensions {
get: (dim: Dimensions) => number;
}
declare module "react-native-extra-dimensions-android" {
const instance: ExtraDimensions;
export = instance;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment