UNPKG
tuix-jira-service-client-d
Version:
latest (0.0.0)
0.0.0
github.com/tuixdevelopment/tuix-jira-service-client
tuixdevelopment/tuix-jira-service-client
tuix-jira-service-client-d
/
dist
/
models
/
LogsTicketDto.ts
14 lines
(10 loc)
•
254 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import
type
{
LogsCommentDto
}
from
'./LogsCommentDto'
;
export
type
LogsTicketDto
= {
key
:
string
;
title
:
string
;
status
:
string
;
comments
:
Array
<
LogsCommentDto
>; };