Can `@supports` be used to detect support for an at rule?

I want detect if the browser supports @starting-style.
So i need something like:
@supports (@starting-style) {
  /* ... */
}

What's the valid syntax for this? assuming there is one.
Was this page helpful?