@metreeca/core - v0.9.22
    Preparing search index...

    Type Alias Keyed<T>

    Named entries with an optional wildcard entry.

    Maps names to values, optionally including a value under the key symbol, mirroring the open template accepted by the isObject guard of @metreeca/core. The wildcard entry covers whatever the named entries leave out: object applies it to every property its template does not name explicitly.

    type Keyed<T> = {
        "[key]"?: T;
        readonly [name: string]: T;
    }

    Type Parameters

    • T

      The type of the mapped values

    Indexable

    • readonly [name: string]: T
    Index

    Properties

    Properties

    "[key]"?: T