An open API service indexing awesome lists of open source software.

https://github.com/vergegroup/swift-typed-identifier


https://github.com/vergegroup/swift-typed-identifier

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

        

# Typed Identifier

```swift
struct Author: EntityType {

typealias EntityIDRawType = String

var entityID: EntityID {
.init(rawID)
}

let rawID: String

var name: String = ""
}
```