orientation.d.ts 224 B

12345678910
  1. import Emitter = require('./Emitter');
  2. declare namespace orientation {
  3. interface IOrientation extends Emitter {
  4. get(): string;
  5. }
  6. }
  7. declare const orientation: orientation.IOrientation;
  8. export = orientation;