skysync-cli
Version:
SkySync Command Line Interface
11 lines (10 loc) • 607 B
TypeScript
import { IHttpClient } from '../http';
import { PagedResource } from './resource';
import { EntityTypeDictionary } from '../models';
import { CancellationToken } from '../cancellation-token';
import { EntityTypeDictionaryElementsResource } from './entityTypeDictionaryElements';
export declare class EntityTypeDictionariesResource extends PagedResource<EntityTypeDictionary> {
constructor(httpClient: IHttpClient);
elements(dictionaryId: string): EntityTypeDictionaryElementsResource;
import(body: FormData, params?: any, token?: CancellationToken): Promise<EntityTypeDictionary[]>;
}