UNPKG

teko-file-history

Version:

File history component for Teko system

43 lines (42 loc) 1.24 kB
import { ClassName, ProcessingFileStatus } from '../types'; export declare const FILE_URL: { [key: string]: string; }; export declare const FPS_URL: { [key: string]: string; }; export declare const LOYALTY_URL: { [key: string]: string; }; export declare const UPLOAD_DOC_URL = "/upload/doc?cloud=true&isPrivate=true"; export declare const EXCEL_TYPE_XLS: { extension: string; mimeType: string; }; export declare const EXCEL_TYPE_XLSX: { extension: string; mimeType: string; }; export declare const EXCEL_TYPE_CSV: { extension: string; mimeType: string; }; export declare const EXCEL_TYPES_PDF: { extension: string; mimeType: string; }; export declare const EXCEL_TYPES: { extension: string; mimeType: string; }[]; export declare const MAX_EXCEL_SIZE = 5; export declare const MAX_EXCEL_LINE = 10000; export declare const PAGINATION: { page: number; pageSize: number; }; export declare const DATE_SLASH_FORMAT = "DD/MM/YYYY"; export declare const TIME_FORMAT = "HH:mm:ss"; export declare const DATE_TIME_FORMAT: string; export declare const STATUSES: ProcessingFileStatus; export declare const DEFAULT_CLASSNAMES: Required<ClassName>;