copykitku/src/vendor/gitlab/rest-api-types.ts
2021-02-02 16:20:59 +01:00

18 lines
317 B
TypeScript

/**
* Roses are red,
* Violets are blue,
* GitLab is fucked up,
* so this code needs too
*/
export interface GL4MergeRequestCommit {
id: string;
short_id: string;
title: string;
author_name: string;
author_email: string;
/** "2012-09-20T09:06:12+03:00" */
created_at: string;
message: string;
}