Skip to content

Commit

Permalink
CI: typecheck events
Browse files Browse the repository at this point in the history
  • Loading branch information
Brent Kimmel committed Jun 18, 2020
1 parent 35e327c commit 7cc3d72
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions x-pack/plugins/security_solution/common/endpoint/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -448,20 +448,20 @@ export interface EndpointEvent {
process: {
entity_id: string;
name: string;
executable: string;
args: string;
code_signature: {
executable?: string;
args?: string;
code_signature?: {
status: string;
subject_name: string;
};
pid: number;
hash: {
pid?: number;
hash?: {
md5: string;
};
parent?: {
entity_id: string;
name?: string;
pid: number;
pid?: number;
};
};
user?: {
Expand Down

0 comments on commit 7cc3d72

Please sign in to comment.