/** * A registry of Extension Points. */ export default interface ExtensionPointRegistry { /** * Register a specified Extension Point. * * @param extensionPoint the Extension Point to register */ register(extensionPoint: string): Promise; /** * Return all registered Extension Points. * * @return Set of Extension Points */ getAll(): Promise>; /** * Returns `true` if the specified Extension Point has been registered. * * @param extensionPoint the Extension Point to check */ isRegistered(extensionPoint: string): Promise; } //# sourceMappingURL=ExtensionPointRegistry.d.ts.map