Unverified Commit 37ec9715 authored by Marcus Coleman's avatar Marcus Coleman Committed by GitHub

Merge pull request #32 from gvanderclay/add-typescript-support

Add Typescript Types
parents ca1a88eb e525869b
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