Can be used on functions like this:

interface Account {
	deposit?: ()
}
 
const acc: Account = {}
 
acc.deposit?.(100)