Ontica/Empiria.Land.Intranet

View on GitHub
src/app/main-layout/config-data/tools-config.ts

Summary

Maintainability
A
0 mins
Test Coverage

/**
 * @license
 * Copyright (c) La Vía Óntica SC, Ontica LLC and contributors. All rights reserved.
 *
 * See LICENSE.txt in the project root for complete license information.
 */

export type TOOL_TYPES = 'None' | 'Search' | 'SearchRecordableSubject';


export const TOOLS_LIST: TOOL_TYPES[] = ['None', 'Search', 'SearchRecordableSubject'];


export interface Tool {
  toolType: TOOL_TYPES;
  params?: any;
}


export const DefaultTool: Tool = {
  toolType: 'None',
};