Concept Flow - Interface declaration syntax
Start
Write 'interface' keyword
Name the interface
Open curly brace '{'
Declare method/property signatures
Close curly brace '}'
Interface ready to use
This flow shows how to write an interface: start with the keyword, name it, add method signatures inside braces, then finish.