UNPKG
ngx-admin-lte
Version:
latest (3.0.0-beta.1)
3.0.0-beta.1
2.0.0-beta.11
2.0.0-beta.10
2.0.0-beta.9
2.0.0-beta.8
2.0.0-beta.7
2.0.0-beta.6
1.1.0
1.0.1
1.0.0
0.6.4
0.6.3
0.6.2
0.6.1
0.6.0
0.5.1
0.5.0
0.4.0
0.3.0
0.2.0
0.1.0
AdminLTE theme for angular
ngx-admin-lte
/
models
/
message.d.ts
10 lines
(9 loc)
•
192 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
User
}
from
'./user'
;
export
declare
class
Message
{
content
:
string
;
title
:
string
;
author
:
User
;
destination
:
User
;
date
:
string
;
constructor
(
data
?:
any
); }