Skip to content

Commit

Permalink
Fix StyleManagerConfig.sectors.properties TS. Closes #5613
Browse files Browse the repository at this point in the history
  • Loading branch information
artf committed Jan 18, 2024
1 parent 3e029b8 commit 34a20bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/style_manager/config/config.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { PropertyProps } from '../model/Property';
import { PropertyTypes } from '..';
import { SectorProperties } from '../model/Sector';

export interface StyleManagerConfig {
/**
* Default sectors and properties
*/
sectors?: (Omit<SectorProperties, 'properties'> & { properties?: (string | PropertyProps)[] })[];
sectors?: (Omit<SectorProperties, 'properties'> & { properties?: (string | PropertyTypes)[] })[];

/**
* Specify the element to use as a container, string (query) or HTMLElement.
Expand Down

0 comments on commit 34a20bc

Please sign in to comment.