UNPKG

box-node-sdk

Version:

Official SDK for Box Plaform APIs

14 lines (13 loc) 301 B
import { Collaboration } from './collaboration'; type CollaborationsOrder = { by: string; direction: 'ASC' | 'DESC'; }; export interface Collaborations { entries: Collaboration[]; limit: number; offset: number; order: CollaborationsOrder; total_count: number; } export {};