UNPKG

@obliczeniowo/elementary

Version:
9 lines (8 loc) 422 B
import { CategoryWithId } from '../interfaces/category'; import { AbstractCombineAdapter } from './abstract-combine-adapter'; export declare class CombineNameAndIndexAdapter extends AbstractCombineAdapter<CategoryWithId> { findIndex(data: CategoryWithId): number; fromIndex(index: number): CategoryWithId; convert(): CategoryWithId[][]; transform(data: CategoryWithId[][], reversed?: boolean): string[]; }