/
githubmirror
/
novu
Обзор
Документация
Войти
/
githubmirror
/
novu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
next
packages/shared/src/entities/layout/layout.interface.ts
30 строк
631 B
Richard Fontein
chore(shared): Relocate package from `libs` to `packages` (#6472)
11 сен 2024, 13:24
Не верифицирован
11 сен 2024, 13:24
2acea62
Код
Авторство
О чём код?
import { ChannelTypeEnum, EnvironmentId, ITemplateVariable, LayoutDescription, LayoutId, LayoutIdentifier, LayoutName, OrganizationId, UserId, } from '../../types'; export interface ILayoutEntity { _id?: LayoutId; _organizationId: OrganizationId; _environmentId: EnvironmentId; _creatorId: UserId; _parentId?: LayoutId; name: LayoutName; identifier: LayoutIdentifier; channel: ChannelTypeEnum; content: string; description?: LayoutDescription; contentType: string; variables?: ITemplateVariable[]; isDefault: boolean; isDeleted: boolean; createdAt?: string; updatedAt?: string; }