code-story
Version:
Get your code activity log for standup from git
30 lines (29 loc) • 727 B
TypeScript
export declare const TAB = " ";
export declare const LINE_BREAK_CHAR = "\n";
export declare const TICKET_NAME_REGEXP: RegExp;
export declare enum TextEntity {
url = "url",
nope = "nope",
label = "label",
repositoryName = "repositoryName",
branch = "branch",
commitHash = "commitHash",
commitSubject = "commitSubject",
date = "date",
author = "author",
addedCommit = "addedCommit",
modifiedCommit = "modifiedCommit",
addedFile = "addedFile",
rebasedFile = "rebasedFile",
modifiedFile = "modifiedFile",
deletedFile = "deletedFile"
}
export declare enum OPTIONS_WEEK_DAY_CODE_MAP {
Su = 0,
Mo = 1,
Tu = 2,
We = 3,
Th = 4,
Fr = 5,
Sa = 6
}