The keyword typealias is used in place of typedef:
typealias CustomType = String
var customString: CustomType = "Test String"
The keyword typealias is used in place of typedef:
typealias CustomType = String
var customString: CustomType = "Test String"