Skip to content
Snippets Groups Projects
Commit 20bcd68f authored by vincent.steinman's avatar vincent.steinman Committed by michael.minelli
Browse files

fix copy issue

parent b5b61aa3
No related branches found
No related tags found
No related merge requests found
interface GitlabUser {
id: number,
username: string,
name: string,
state: string,
avatar_url: string,
web_url: string,
}
export default GitlabUser;
\ No newline at end of file
enum GitlabVisibility {
PUBLIC = 'public',
INTERNAL = 'internal',
PRIVATE = 'private'
}
export default GitlabVisibility;
const Icon = {
CAT_INFO : '▶️',
INFO : 'ℹ️',
ERROR : '⛔️',
SUCCESS : '',
FAILURE : '',
VOMIT : '🤮',
YUCK : '🤢',
WELL_DONE: '👍',
NULL : '',
NONE : '',
BADMINTON: '🏸'
} as { [index: string]: string };
export default Icon;
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment