Add type to WorkflowTemplate definition

[MAILPOET-4745]
This commit is contained in:
David Remer
2022-11-08 10:11:12 +02:00
committed by Jan Jakeš
parent c239566e1e
commit c3045dba07

View File

@ -2,6 +2,7 @@ export type WorkflowTemplate = {
slug: string;
name: string;
description: string;
type: 'default' | 'free-only' | 'premium' | 'coming-soon';
};
declare global {