uservoice-nodejs
Version:
Node.js SDK for UserVoice
18 lines (17 loc) • 326 B
TypeScript
export interface IResponse {
links?: {
[key: string]: string;
};
pagination?: IPagination;
}
export interface IModel {
id: number;
created_at: Date;
updated_at: Date;
}
export interface IPagination {
page: number;
per_page: number;
total_pages: number;
total_records: number;
}