UNPKG

ghost

Version:

The professional publishing platform

14 lines (11 loc) 332 B
export class PostsBulkUnfeaturedEvent { data: string[]; timestamp: Date; constructor(data: string[], timestamp: Date) { this.data = data; this.timestamp = timestamp; } static create(data: string[], timestamp = new Date()) { return new PostsBulkUnfeaturedEvent(data, timestamp); } }