platform-bible-utils
    Preparing search index...

    Type Alias Prettify<T>

    Prettify: { [K in keyof T]: T[K] } & {}

    Force VSCode to expand all the properties of a type by using this type. Useful for making complex types more readable in hover tooltips.

    Type Parameters

    • T
    type MyType = Prettify<SomeComplexType>;