UNPKG

dev-classes

Version:

<h3 align="center">SocketApi</h3> ### !!! Пакет пепеехал в lib-socket-api !!!

8 lines (7 loc) 257 B
export type FileFormat_OR = 'xls' | 'xlsx' | 'pdf' | 'csv'; export type FileConfig_P = Record<FileFormat_OR, string>; export interface FileProps { download(attachment: Record<'name' | 'base64', string> & { format: FileFormat_OR; }): void; }