dyna-record
    Preparing search index...

    Type Alias EntityNamesStartingWith<T, Prefix>

    EntityNamesStartingWith: Extract<PartitionEntityNames<T>, `${Prefix}${string}`>

    Finds partition entity names that start with a given prefix string. E.g. if partition has "Invoice" and "Inventory", EntityNamesStartingWith<T, "Inv"> returns "Invoice" | "Inventory".

    Type Parameters

    • T extends default
    • Prefix extends string