File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+
2+ // https://www.npmjs.com/package/jwt-decode
3+ export interface TokenInformation {
4+ issuedAt : number ;
5+ exp : number ;
6+
7+ payload ?: string ;
8+ }
9+
10+ export interface UserTokenInformation extends TokenInformation {
11+ username : string ;
12+ id : number ;
13+ email : string ;
14+ name : string ;
15+ }
16+
17+
18+ // http://npmjs.com/package/js-cookie
19+ export interface CookieData {
20+ name : string ;
21+ value : string ;
22+ }
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1- export * from './lib/classes.js' ;
1+ export * from './Models/classes.ts' ;
2+
3+ // Frontend
4+ export * from './Frontend/TokenInformation.ts' ;
5+
6+ // Models
7+ export * from './Models/Policies/PolicySubmission.ts' ;
8+ export * from './Models/Policies/Policy.ts' ;
9+ export * from './Models/Policies/AutoPolicy.ts' ;
10+ export * from './Models/Policies/HomePolicy.ts' ;
11+
12+ export * from './Models/Clients/Client.ts' ;
13+ export * from './Models/Agents/Agent.ts' ;
14+
15+ // Common
You can’t perform that action at this time.
0 commit comments