@metreeca/blue - v0.9.1
    Preparing search index...

    Type Alias Composition<E>

    Composition: {
        readonly [K in RequiredKeys<E> as Projection<K & string>]: Content<E[K]>
    } & {
        readonly [K in OptionalKeys<E> as Projection<K & string>]?: Exclude<
            Content<E[K]>,
            undefined,
        >
    }

    Builds a resource type from Entries.

    Type Parameters