fix: correct property order

This commit is contained in:
Karl-Philipp Wulfert
2019-01-28 16:16:45 +01:00
parent 16f67c71eb
commit 3e494ce0dc
2 changed files with 11 additions and 11 deletions

View File

@@ -25,7 +25,7 @@ import {
Milestone, Milestone,
Project, Project,
Tag, Tag,
TreeFile TreeFile,
} from './types'; } from './types';
export const logger = new Logger(); export const logger = new Logger();

View File

@@ -244,18 +244,18 @@ export interface ThingWithTimeStats {
* A GitLab group * A GitLab group
*/ */
export interface Group { export interface Group {
id: number;
web_url: string;
name: string;
path: string;
description: string;
visibility: string;
lfs_enabled: boolean;
avatar_url: string; avatar_url: string;
request_access_enabled: boolean; description: string;
full_name: string; full_name: string;
full_path: string; full_path: string;
parent_id: number; id: number;
ldap_cn: string;
ldap_access: string; ldap_access: string;
ldap_cn: string;
lfs_enabled: boolean;
name: string;
parent_id: number;
path: string;
request_access_enabled: boolean;
visibility: string;
web_url: string;
} }