Skip to content

Commit b7f9fdd

Browse files
committed
Refactoring
1 parent 344e121 commit b7f9fdd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/ansi/control/all_controls.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ const allControls = {
1414

1515
export default allControls;
1616

17-
export type AllControl = C0ControlValue | C1ControlValue;
17+
export type AllControlValue = C0ControlValue | C1ControlValue;

src/ansi/mod.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import formats from "./format/format.ts";
77

88
import { C0ControlValue } from "./control/c0_controls.ts";
99
import { C1ControlValue } from "./control/c1_controls.ts";
10-
import { AllControl } from "./control/all_controls.ts";
10+
import { AllControlValue } from "./control/all_controls.ts";
1111
import { Bit4ColorValue } from "./color/bit4_colors.ts";
1212
import { Bit8ColorValue } from "./color/bit8_colors.ts";
1313
import { Format } from "./format/format.ts";
@@ -24,7 +24,7 @@ export {
2424
export type {
2525
C0ControlValue,
2626
C1ControlValue,
27-
AllControl,
27+
AllControlValue,
2828
Bit4ColorValue,
2929
Bit8ColorValue,
3030
Format

0 commit comments

Comments
 (0)