-
-
Save chillu/d0069fb0123d0480761e6ba5659bd2e7 to your computer and use it in GitHub Desktop.
This file contains 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
interface SiteTreeInterface { | |
id | |
created | |
title | |
content | |
} | |
interface PageInterface { | |
id | |
created | |
title | |
content | |
myField | |
} | |
interface RediectorPageInterface { | |
id | |
created | |
title | |
content | |
myField | |
redirectionType | |
externalUrl | |
} | |
type SiteTree implements SiteTreeInterface { | |
id | |
created | |
title | |
content | |
} | |
type Page implements SiteTreeInterface, PageInterface { | |
id | |
created | |
title | |
content | |
myField | |
} | |
type RedirectorPage implements RedirectorPageInterface, SiteTreeInterface, PageInterface { | |
id | |
created | |
title | |
content | |
myField | |
redirectionType | |
externalUrl | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment