-
Notifications
You must be signed in to change notification settings - Fork 472
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: one simple single file instead of many files for three types (#…
- Loading branch information
Showing
4 changed files
with
12 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
export * from './line-chart-hint-context'; | ||
export * from './line-handler'; | ||
export * from './line-type'; | ||
import type {TuiContext} from '@taiga-ui/cdk/types'; | ||
|
||
/** | ||
* Native CSS border-style options | ||
*/ | ||
export type TuiLineType = 'dashed' | 'dotted' | 'hidden' | 'none' | 'solid'; | ||
|
||
export type TuiLineHandler = (index: number, total: number) => TuiLineType; | ||
|
||
export interface TuiLineChartHintContext<T> extends TuiContext<T> { | ||
readonly index?: number; | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.