/**
 * @project JSDK 
 * @license MIT
 * @website https://github.com/fengboyue/jsdk
 * 
 * @version 2.0.0
 * @author Frank.Feng
 */

module JS {

    export namespace ui {
        export type LR = 'left' | 'right';
        export type LRC = 'left' | 'right' | 'center';

        export type LRTB = 'left' | 'right' | 'top' | 'bottom';
        export type LOC9 = 'lt' | 'lm' | 'lb' | 'ct' | 'cm' | 'cb' | 'rt' | 'rm' | 'rb';
    }
}
import LR = JS.ui.LR;
import LRC = JS.ui.LRC;
import LRTB = JS.ui.LRTB;
import LOC9 = JS.ui.LOC9;