mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
21 lines
328 B
TypeScript
21 lines
328 B
TypeScript
|
export interface ICommit {
|
||
|
id: string;
|
||
|
repository?: string;
|
||
|
message?: string;
|
||
|
patch_set?: IPatchSet[];
|
||
|
author_name?: string;
|
||
|
author_email?: string;
|
||
|
timestamp?: Date;
|
||
|
}
|
||
|
|
||
|
export interface IPatchSet {
|
||
|
path: string;
|
||
|
type: string;
|
||
|
}
|
||
|
|
||
|
export interface IRef {
|
||
|
commit: string;
|
||
|
repository: string;
|
||
|
previousCommit?: string;
|
||
|
}
|