All files / src/core/enums modal-result.ts

0% Statements 0/14
0% Branches 0/2
0% Functions 0/1
0% Lines 0/13
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16                               
/**
 * Created by William on 10/07/2017.
 */
export enum ModalResult {
    MRFREE = -1,
    MRCUSTOM = 0,
    MROK = 1,
    MRCANCEL = 2,
    MRABORT = 3,
    MRRETRY = 4,
    MRIGNORE = 5,
    MRYES = 6,
    MRNO = 7,
    MRCLOSE = 8,
}