@ctrl/plex
    Preparing search index...

    Type Alias SectionForCreateType<T>

    SectionForCreateType: T extends "movie"
        ? MovieSection
        : T extends "show"
            ? ShowSection
            : T extends "artist" ? MusicSection : PhotoSection

    Type Parameters