UNPKG

1.17 kBSource Map (JSON)View Raw
1{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":";;AAiBA,IAAY,eAIX;AAJD,WAAY,eAAe;IACzB,sCAAmB,CAAA;IACnB,sCAAmB,CAAA;IACnB,oCAAiB,CAAA;AACnB,CAAC,EAJW,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAI1B;AAED,IAAY,WAGX;AAHD,WAAY,WAAW;IACrB,yCAA0B,CAAA;IAC1B,sCAAuB,CAAA;AACzB,CAAC,EAHW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAGtB;AAED,IAAY,eAIX;AAJD,WAAY,eAAe;IACzB,sCAAmB,CAAA;IACnB,sCAAmB,CAAA;IACnB,8CAA2B,CAAA;AAC7B,CAAC,EAJW,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAI1B","sourcesContent":["export interface ActionResult {\n conclusion: CheckConclusion;\n annotations?: Annotation[];\n}\n\nexport interface Annotation {\n path: string;\n start_line: number;\n end_line: number;\n annotation_level: AnnotationLevel;\n message: string;\n title?: string;\n raw_details?: string;\n start_column?: number;\n end_column?: number;\n}\n\nexport enum AnnotationLevel {\n Failure = 'failure',\n Warning = 'warning',\n Notice = 'notice',\n}\n\nexport enum CheckStatus {\n InProgress = 'in_progress',\n Completed = 'completed',\n}\n\nexport enum CheckConclusion {\n Success = 'success',\n Neutral = 'neutral',\n Failure = 'action_required',\n}\n"]}
\No newline at end of file