Created
August 7, 2017 12:31
-
-
Save nicolasdao/c4598b2c56b4fca7841c53337f93088d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const schema = ` | |
... | |
@alias(T => T.match(/s$/) ? T+'es' : T.match(/y$/) ? T.replace(/y$/, 'ies') : T+'s') | |
type Paged<T> { | |
data: [T] | |
page: Page | |
}` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment