Skip to content

Commit

Permalink
feat(main): created notification types
Browse files Browse the repository at this point in the history
  • Loading branch information
Intevel committed Apr 25, 2022
1 parent 7919b63 commit f0d8719
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/runtime/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,15 @@ export interface DirectusFileRequest {
id?: string;
params?: DirectusQueryParams;
}

export interface DirectusNotificationObject {
id?: number;
timestamp?: string;
status?: "inbox" | "archived";
recipient: Array<string> | string;
sender?: Array<string> | string;
subject: string;
message?: string;
collection?: string;
item?: string;
}

0 comments on commit f0d8719

Please sign in to comment.