Source code for pyexlatex.models.page.footer
from typing import Union, Sequence
from pyexlatex.models.commands.renewcommand import ReNewCommand
from pyexlatex.models.item import SimpleItem
FooterType = Union[RightFooter, LeftFooter, CenterFooter, FooterLine]
Footers = Sequence[FooterType]