function getAnnotationLevel()

in src/main.ts [10:17]


function getAnnotationLevel(): string {
    let val: string = core.getInput('annotation_level');
    if (!val) {
        return <const>'failure';
    } else {
        return val;
    }
}