/** * Console feature flags used to gate extension instances. */ export declare type ExtensionFlags = Partial<{ required: string[]; disallowed: string[]; }>; /** * TS type guard to narrow type of the given extension to `E`. */ export declare type ExtensionTypeGuard = (e: E) => e is E; /** * Runtime extension interface, exposing additional metadata. */ export declare type LoadedExtension = E & { pluginID: string; pluginName: string; uid: string; }; /** * An extension of the Console application. * * Each extension instance has a `type` and the corresponding parameters * represented by the `properties` object. * * Each extension may specify `flags` referencing Console feature flags which * are required and/or disallowed in order to put this extension into effect. */ export declare type Extension

= { type: string; properties: P; flags?: ExtensionFlags; }; /** * Declaration of Console extension type. */ export declare type ExtensionDeclaration = Extension

& { type: T; }; /** * Remote webpack container entry module interface. */ export declare type RemoteEntryModule = { /** * Initialize the container with modules provided via the shared scope. */ init: (sharedScope: any) => void; /** * Get a module exposed through the container. * * Fails if the requested module doesn't exist in the container. */ get: (moduleRequest: string) => Promise<() => T>; }; /** * Code reference, encoded as an object literal. * * The value of the `$codeRef` property should be formatted as `moduleName.exportName` * (referring to a named export) or `moduleName` (referring to the `default` export). */ export declare type EncodedCodeRef = { $codeRef: string; }; /** * Code reference, represented by a function that returns a promise for the object `T`. */ export declare type CodeRef = () => Promise; /** * Extract type `T` from `CodeRef`. */ export declare type ExtractCodeRefType = R extends CodeRef ? T : never; /** * Infer resolved `CodeRef` properties from object `O` recursively. */ export declare type ResolvedCodeRefProperties = { [K in keyof O]: O[K] extends CodeRef ? ExtractCodeRefType : ResolvedCodeRefProperties; }; /** * Update existing properties of object `O` with ones declared in object `U`. */ export declare type Update = { [K in keyof O]: K extends keyof U ? U[K] : O[K]; } & {}; /** * Infer the properties of extension `E`. */ export declare type ExtensionProperties = E extends Extension ? P : never; /** * Update existing properties of extension `E` with ones declared in object `U`. */ export declare type UpdateExtensionProperties, U extends {}, P = ExtensionProperties> = Update; }>; /** * Update `CodeRef` properties of extension `E` to the referenced object types. * * This also coerces `E` type to `LoadedExtension` interface for runtime consumption. */ export declare type ResolvedExtension, P = ExtensionProperties> = LoadedExtension, P>>;