/** * Interface for a key-value database table index layout. * @category Key-Value Database */ export interface IDatabaseTableIndex { /** * The key path for the index. */ keyPath: string; }