2017-06-23 11:54:20 -07:00

9 lines
193 B
TypeScript

// Classes
export class CreatedBuildEvent {
// Properties - Public, Static
public static type = 'build.created';
// Constructor
constructor(public pr: number, public sha: string) {}
}