/**
* Represents a key-item pair. This is for use where associative data needs to
* be represented as a list, such as maintaining the order of the items.
*/
export defaultinterfaceKeyedItem<KeyType, ItemType> {
key: KeyType;
item: ItemType;
}
//# sourceMappingURL=KeyedItem.d.ts.map