UNPKG

158 BTypeScriptView Raw
1export interface IPortalSite {
2 id?: string;
3 title?: string;
4 url?: string;
5 webTemplate?: string;
6 childSites?: Array<IPortalSite>;
7}