19 lines
297 B
TypeScript
19 lines
297 B
TypeScript
export interface Address {
|
|
locality: string;
|
|
number: string;
|
|
street: string;
|
|
}
|
|
|
|
export interface Communication {
|
|
created: string;
|
|
id: string;
|
|
public_report: PublicReport | null;
|
|
type: string;
|
|
}
|
|
|
|
export interface PublicReport {
|
|
created: string;
|
|
type: string;
|
|
}
|
|
|
|
export interface Signal {}
|