@obliczeniowo/elementary
Version:
Library made in Angular version 19
9 lines (8 loc) • 422 B
TypeScript
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[];
}