/** * Copyright © INOVUA TRADING. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ declare const positionMap: { top: { alias: string; position: string; offset: { x: number; y: number; resetNumeric: string; }; }; 'bc-tc': { alias: string; position: string; offset: { x: number; y: number; resetNumeric: string; }; }; 'bl-tl': { alias: string; position: string; offset: { x: number; y: number; resetNumeric: string; }; }; 'br-tr': { alias: string; position: string; offset: { x: number; y: number; resetNumeric: string; }; }; 'br-tl': { alias: string; position: string; offset: { x: number; y: number; }; }; right: { position: string; alias: string; offset: { x: number; y: number; resetNumeric: string; }; }; 'lc-rc': { position: string; alias: string; offset: { x: number; y: number; resetNumeric: string; }; }; 'tl-tr': { position: string; alias: string; offset: { x: number; y: number; resetNumeric: string; }; }; 'bl-br': { position: string; alias: string; offset: { x: number; y: number; resetNumeric: string; }; }; 'tl-br': { position: string; alias: string; offset: { x: number; y: number; }; }; bottom: { position: string; alias: string; offset: { x: number; y: number; resetNumeric: string; }; }; 'tc-bc': { position: string; alias: string; offset: { x: number; y: number; resetNumeric: string; }; }; 'tl-bl': { position: string; alias: string; offset: { x: number; y: number; resetNumeric: string; }; }; 'tr-br': { position: string; alias: string; offset: { x: number; y: number; resetNumeric: string; }; }; 'tr-bl': { position: string; alias: string; offset: { x: number; y: number; }; }; left: { position: string; alias: string; offset: { x: number; y: number; resetNumeric: string; }; }; 'rc-lc': { position: string; alias: string; offset: { x: number; y: number; resetNumeric: string; }; }; 'tr-tl': { position: string; alias: string; offset: { x: number; y: number; resetNumeric: string; }; }; 'br-bl': { position: string; alias: string; offset: { x: number; y: number; resetNumeric: string; }; }; }; declare const posiblePositions: string[]; export { posiblePositions }; export default positionMap;