chore: Fix import formatting in multiple files

This commit is contained in:
LuanRT
2023-12-26 23:16:45 -03:00
parent 9c503f4fa8
commit 82d5d1e3e1
8 changed files with 8 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
import type { ObservedArray} from '../helpers.js';
import type { ObservedArray } from '../helpers.js';
import { YTNode } from '../helpers.js';
import type { RawNode } from '../index.js';
import { Parser } from '../index.js';

View File

@@ -1,4 +1,4 @@
import type { ObservedArray} from '../helpers.js';
import type { ObservedArray } from '../helpers.js';
import { YTNode } from '../helpers.js';
import type { RawNode } from '../index.js';
import { Parser } from '../index.js';

View File

@@ -1,4 +1,4 @@
import type { ObservedArray} from '../helpers.js';
import type { ObservedArray } from '../helpers.js';
import { YTNode } from '../helpers.js';
import { Parser, type RawNode } from '../index.js';

View File

@@ -1,5 +1,5 @@
import { Parser } from '../../index.js';
import type { ObservedArray} from '../../helpers.js';
import type { ObservedArray } from '../../helpers.js';
import { YTNode } from '../../helpers.js';
import type { RawNode } from '../../index.js';

View File

@@ -1,4 +1,4 @@
import type { ObservedArray} from '../../helpers.js';
import type { ObservedArray } from '../../helpers.js';
import { YTNode } from '../../helpers.js';
import type { RawNode } from '../../index.js';
import { Parser } from '../../index.js';

View File

@@ -1,4 +1,4 @@
import type { ObservedArray} from '../../helpers.js';
import type { ObservedArray } from '../../helpers.js';
import { YTNode } from '../../helpers.js';
import type { RawNode } from '../../index.js';
import { Parser } from '../../index.js';

View File

@@ -1,4 +1,4 @@
import type { SuperParsedResult} from '../../helpers.js';
import type { SuperParsedResult } from '../../helpers.js';
import { YTNode } from '../../helpers.js';
import type { RawNode } from '../../index.js';
import { Parser } from '../../index.js';

View File

@@ -1,5 +1,5 @@
import type { IGuideResponse } from '../types/ParsedResponse.js';
import type { IRawResponse} from '../index.js';
import type { IRawResponse } from '../index.js';
import { Parser } from '../index.js';
import type { ObservedArray } from '../helpers.js';
import GuideSection from '../classes/GuideSection.js';