Skip to content

Commit 1e2fc34

Browse files
committed
Refactoring
1 parent b7f9fdd commit 1e2fc34

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/ansi/format/format.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,4 +124,4 @@ export default formats;
124124
/**
125125
* This type gets generated from the values of {@linkcode formats}.
126126
*/
127-
export type Format = ValuesFromObject<typeof formats>;
127+
export type FormatValue = ValuesFromObject<typeof formats>;

src/ansi/mod.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { C1ControlValue } from "./control/c1_controls.ts";
1010
import { AllControlValue } from "./control/all_controls.ts";
1111
import { Bit4ColorValue } from "./color/bit4_colors.ts";
1212
import { Bit8ColorValue } from "./color/bit8_colors.ts";
13-
import { Format } from "./format/format.ts";
13+
import { FormatValue } from "./format/format.ts";
1414

1515
export {
1616
c0Controls,
@@ -27,5 +27,5 @@ export type {
2727
AllControlValue,
2828
Bit4ColorValue,
2929
Bit8ColorValue,
30-
Format
30+
FormatValue
3131
}

0 commit comments

Comments
 (0)