Skip to content

Commit 293581d

Browse files
committed
Refactoring
1 parent 2c18cb7 commit 293581d

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

src/ansi/colors/4bit/background_colors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ValuesFromObject } from "../../../type/mod.ts";
1+
import type { ValuesFromObject } from "../../../type/mod.ts";
22

33
/**
44
* This object contains all 4-Bit background color codes.

src/ansi/colors/4bit/foreground_colors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ValuesFromObject } from "../../../type/mod.ts";
1+
import type { ValuesFromObject } from "../../../type/mod.ts";
22

33
/**
44
* This object contains all 4-Bit foreground color codes.

src/ansi/colors/8bit/colors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ValuesFromObject } from "../../../type/mod.ts";
1+
import type { ValuesFromObject } from "../../../type/mod.ts";
22

33
/**
44
* This object contains all 8-Bit normal color codes.

src/ansi/colors/8bit/grayscale_colors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ValuesFromObject } from "../../../type/mod.ts";
1+
import type { ValuesFromObject } from "../../../type/mod.ts";
22

33
/**
44
* This object contains all 8-Bit grayscale color codes.

src/ansi/controls/c0_controls.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ValuesFromObject } from "../../type/mod.ts";
1+
import type { ValuesFromObject } from "../../type/mod.ts";
22

33
/**
44
* This object contains all C0 ANSI control codes.

src/ansi/controls/c1_controls.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ValuesFromObject } from "../../type/mod.ts";
1+
import type { ValuesFromObject } from "../../type/mod.ts";
22

33
/**
44
* This object contains all C1 ANSI control codes.

src/ansi/formats/colors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ValuesFromObject } from "../../type/mod.ts";
1+
import type { ValuesFromObject } from "../../type/mod.ts";
22

33
/**
44
* This object contains all color format codes.

src/ansi/formats/fonts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ValuesFromObject } from "../../type/mod.ts";
1+
import type { ValuesFromObject } from "../../type/mod.ts";
22

33
/**
44
* This object contains all font format codes.

src/ansi/formats/format.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ValuesFromObject } from "../../type/mod.ts";
1+
import type { ValuesFromObject } from "../../type/mod.ts";
22
import colors from './colors.ts';
33
import fonts from './fonts.ts';
44
import ideograms from './ideograms.ts';

src/ansi/formats/ideograms.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ValuesFromObject } from "../../type/mod.ts";
1+
import type { ValuesFromObject } from "../../type/mod.ts";
22

33
/**
44
* This object contains all ideogram format codes.

0 commit comments

Comments
 (0)