interface ContentChildren {
    _expandable?: {
        attachment?: string;
        comment?: string;
        database?: string;
        embed?: string;
        folder?: string;
        page?: string;
        whiteboard?: string;
    } & {
        [key: string]: unknown;
    };
    _links?: GenericLinks;
    attachment?: ContentArray;
    comment?: ContentArray;
    database?: ContentArray;
    embed?: ContentArray;
    folder?: ContentArray;
    page?: ContentArray;
    whiteboard?: ContentArray;
}

Hierarchy

  • Record<string, unknown>
    • ContentChildren

Properties

_expandable?: {
    attachment?: string;
    comment?: string;
    database?: string;
    embed?: string;
    folder?: string;
    page?: string;
    whiteboard?: string;
} & {
    [key: string]: unknown;
}
_links?: GenericLinks
attachment?: ContentArray
comment?: ContentArray
database?: ContentArray
embed?: ContentArray
folder?: ContentArray
whiteboard?: ContentArray