@wepublish/api
Version:
API core for we.publish.
16 lines (15 loc) • 420 B
TypeScript
export declare enum ActionType {
ArticleCreated = "articleCreated",
PageCreated = "pageCreated",
CommentCreated = "commentCreated",
SubscriptionCreated = "subscriptionCreated",
AuthorCreated = "authorCreated",
PollStarted = "pollStarted",
UserCreated = "userCreated",
EventCreated = "eventCreated"
}
export interface Action {
date: Date;
actionType: ActionType;
id: string;
}