interface CustomListPageProps {
    children?: ReactNode;
    key?: Key;
    location?: { [key: string]: string | { [key: string]: string } };
    params: { editOrCreate?: string; identifier?: string; library?: string };
    ref?: LegacyRef<CustomListPageProps>;
}

Hierarchy

Properties

children?: ReactNode
key?: Key
location?: { [key: string]: string | { [key: string]: string } }
params: { editOrCreate?: string; identifier?: string; library?: string }
ref?: LegacyRef<CustomListPageProps>