Skip to content

Commit

Permalink
update api-interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
hectorromerodev committed Sep 6, 2022
1 parent f98d9cf commit c2efd4c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions libs/api-interfaces/src/lib/api-interfaces.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
export interface Message {
message: string;
}

export interface BaseEntity {
id: string | null;
}

export interface Widget extends BaseEntity {
title: string;
description: string;
}

0 comments on commit c2efd4c

Please sign in to comment.