/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ export declare enum OverwritePolicy { ALLOW = "ALLOW", PROHIBIT = "PROHIBIT", WARN = "WARN" } interface ItemWithValue { value: T; } interface ItemWithLoader { loader: () => T; } export interface RegistryConfig { name?: string; overwritePolicy?: OverwritePolicy; } /** * Registry class * * Can use generic to specify type of item in the registry * @type V Type of value * @type W Type of value returned from loader function when using registerLoader(). * W can be either V, Promise or V | Promise * Set W=V when does not support asynchronous loader. * By default W is set to V | Promise to support * both synchronous and asynchronous loaders. */ export default class Registry = V | Promise> { name: string; overwritePolicy: OverwritePolicy; items: { [key: string]: ItemWithValue | ItemWithLoader; }; promises: { [key: string]: Promise; }; constructor(config?: RegistryConfig); clear(): this; has(key: string): boolean; registerValue(key: string, value: V): this; registerLoader(key: string, loader: () => W): this; get(key: string): V | W | undefined; getAsPromise(key: string): Promise; getMap(): { [key: string]: V | W | undefined; }; getMapAsPromise(): Promise<{ [key: string]: V; }>; keys(): string[]; values(): (V | W | undefined)[]; valuesAsPromise(): Promise; entries(): { key: string; value: V | W | undefined; }[]; entriesAsPromise(): Promise<{ key: string; value: V; }[]>; remove(key: string): this; } export {}; //# sourceMappingURL=Registry.d.ts.map