UNPKG

@mediarithmics/plugins-nodejs-sdk

Version:

This is the mediarithmics nodejs to help plugin developers bootstrapping their plugin without having to deal with most of the plugin boilerplate

14 lines (13 loc) 293 B
export declare type statusCode = "ok" | "error"; export interface ResponseData<T> { data: T; status: statusCode; } export interface ResponseListOfData<T> { data: T[]; status: string; count: number; first_result?: number; max_results?: number; total?: number; }