layout.dto.d.ts 703 B

1234567891011121314151617181920
  1. import { ChannelTypeEnum, EnvironmentId, IEmailBlock, ITemplateVariable, OrganizationId, LayoutDescription, LayoutId, LayoutName, LayoutIdentifier, UserId } from '../../types';
  2. export declare class LayoutDto {
  3. _id?: LayoutId;
  4. _organizationId: OrganizationId;
  5. _environmentId: EnvironmentId;
  6. _creatorId: UserId;
  7. _parentId?: LayoutId;
  8. name: LayoutName;
  9. identifier: LayoutIdentifier;
  10. description?: LayoutDescription;
  11. channel: ChannelTypeEnum;
  12. content: IEmailBlock[];
  13. contentType: string;
  14. variables?: ITemplateVariable[];
  15. isDefault: boolean;
  16. isDeleted: boolean;
  17. createdAt?: string;
  18. updatedAt?: string;
  19. }
  20. //# sourceMappingURL=layout.dto.d.ts.map