Files
workavia-drive/tdrive/connectors/onlyoffice-connector/src/interfaces/routes.interface.ts
T
2024-08-25 22:26:28 +02:00

18 lines
317 B
TypeScript

import { Router } from 'express';
export interface Routes {
path?: string;
router: Router;
}
export interface OfficeToken {
user_id: string;
company_id: string;
file_id: string;
file_name: string;
preview: boolean;
editing_session_key: string;
drive_file_id?: string;
in_page_token?: boolean;
}