All of the examples I have found for the PrimeNG p-table show the following example for filtering a table.
<input pInputText type="text" (input)="dt.filterGlobal($event.target.value, 'contains')" placeholder="Filter" />
When I use this I get a compile error.
error TS2339: Property 'value' does not exist on type 'EventTarget'.
Note: I do have strict mode turned on.