Is there like ```typescript type AWithFields = { foo: string } const mapper = <T satisifies AWithFields>(param: T) => { // update param fields here and return return param } ``` I wanted to accept any param that `satisifies AWithFields` in the function.