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

15 lines (13 loc) 270 B
export 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; }