UNPKG

@dasch-swiss/dsp-js

Version:

JavaScript library that handles API requests to Knora

15 lines (14 loc) 337 B
import { JsonCustomConvert } from "json2typescript"; /** * @category Internal */ export declare class GroupsPerProjectConverter implements JsonCustomConvert<{ [key: string]: string[]; }> { serialize(groups: { [key: string]: string[]; }): any; deserialize(item: any): { [key: string]: string[]; }; }