When we declare a function interface, omit formal parameter. Because the param name is not important in interface, just the param type does. So, we can make below code ``` ts interface func{ (paramA: typeA, paramB: typeB): typeC; } ``` to this form ``` ts interface func{ (:typeA, :typeB): typeC } ```