UNPKG

react-application-core

Version:

A react-based application core for the business applications.

17 lines (16 loc) 449 B
import { IFilesWrapper, IUuidWrapper } from '../definitions.interface'; /** * @stable [16.09.2019] */ export interface IVersionMetaFilesEntity extends IUuidWrapper, IFilesWrapper<string[]> { } /** * @stable [16.09.2019] */ export interface IVersionProcessor { processNewVersionUuidAndGetResult(): Promise<boolean>; } /** * @stable [16.09.2019] */ export declare const VERSION_PROCESSOR_LOADING_INFO_OPERATION_UUID: string;