Type Alias IndexRelation<TTypes>

IndexRelation<TTypes>: {
    child: {
        key: string;
        type: StringKey<TTypes>;
    };
    parent: {
        key: VirtualKey<string>;
        type: StringKey<TTypes>;
    };
}

A parent/child relation description in a WrappedIndexedStorage.

Type Parameters

  • TTypes