2017-02-06 20:40:28 +02:00
|
|
|
// Classes
|
2017-06-19 01:15:07 +03:00
|
|
|
export class ChangedPrVisibilityEvent {
|
|
|
|
// Properties - Public, Static
|
|
|
|
public static type = 'pr.changedVisibility';
|
|
|
|
|
|
|
|
// Constructor
|
|
|
|
constructor(public pr: number, public shas: string[], public isPublic: boolean) {}
|
|
|
|
}
|
|
|
|
|
2017-06-17 21:24:16 +03:00
|
|
|
export class CreatedBuildEvent {
|
2017-02-06 20:40:28 +02:00
|
|
|
// Properties - Public, Static
|
|
|
|
public static type = 'build.created';
|
|
|
|
|
|
|
|
// Constructor
|
2017-06-19 01:15:07 +03:00
|
|
|
constructor(public pr: number, public sha: string, public isPublic: boolean) {}
|
2017-02-06 20:40:28 +02:00
|
|
|
}
|