UNPKG

@c8y/bootstrap

Version:

Bootstrap layer

10 lines (9 loc) 409 B
import type { IApplication, ICurrentTenant, ICurrentUser, IUser } from '@c8y/client'; import type { RemoteModuleFactoryWithMetadata } from '../plugins/plugins'; export interface BootstrapMetaData { options: Record<string, any>; currentUser?: IUser | ICurrentUser; currentApp?: IApplication; currentTenant?: ICurrentTenant; remoteModuleFactories?: Array<RemoteModuleFactoryWithMetadata>; }