declare enum ReaderDirection {
    /**
     * Saída
     */
    EXIT = "EXIT",
    /**
     * Entrada
     */
    ENTRANCE = "ENTRANCE",
    /**
     * Ambos os Sentidos
     */
    BOTH = "BOTH"
}
export = ReaderDirection;
