smartacme/ts/interfaces/accountdata.ts

9 lines
187 B
TypeScript
Raw Permalink Normal View History

2019-01-06 19:41:21 +00:00
export interface IAccountData {
id: number;
key: { kty: 'RSA'; n: string; e: string; kid: string };
contact: string[];
initialIp: string;
createdAt: string;
status: string;
}