/**
 * Interface that describes an object with a unique key.
 *
 * @interface IKey
 */
export interface IKey {
    /**
     * Unique key.
     */
    key: string;
}

export default IKey;
