@dgks/core
Version:
Core implementation for @dgks packages
21 lines (20 loc) • 400 B
TypeScript
import { ExtendOptions } from 'got';
/**
* Options when used for extending abstract service
*/
export interface BaseServiceOptions {
/**
* ID of openapi url
* @example 1611000
*/
id: string | number;
/**
* Service name of openapi
* @example BldRgstService_v2
*/
name: string;
/**
* Extend got options
*/
gotOptions?: ExtendOptions;
}