1 min read 20 words Updated Sep 24, 2026 Created Sep 24, 2026
#TypeScript

Can be used on functions like this:

interface Account {
	deposit?: ()
}

const acc: Account = {}

acc.deposit?.(100)