n8n-nodes-base
Version:
Base nodes of n8n
19 lines • 401 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;
}
//# sourceMappingURL=Interface.d.ts.map