@plone/types
Version:
Plone's Types Package
29 lines (27 loc) • 463 B
TypeScript
export interface WorkflowResponse {
'@id': string;
history: {
action: null;
actor: string;
comments: string;
review_state: string;
time: string;
title: string;
};
state: {
id: string;
title: string;
};
transitions: {
'@id': string;
title: string;
};
}
export interface CreateWorkflowResponse {
action: string;
actor: string;
comments: string;
review_state: string;
time: string;
title: string;
}