From 7d59cd9bfbfebaccc93811a50cc698e46e6c862b Mon Sep 17 00:00:00 2001 From: ST-DDT Date: Mon, 2 Dec 2024 10:34:57 +0100 Subject: infra(unicorn): prefer-export-from (#3272) --- test/scripts/apidocs/method.example.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'test/scripts/apidocs/method.example.ts') diff --git a/test/scripts/apidocs/method.example.ts b/test/scripts/apidocs/method.example.ts index 4ecdaee1..73632b42 100644 --- a/test/scripts/apidocs/method.example.ts +++ b/test/scripts/apidocs/method.example.ts @@ -3,8 +3,14 @@ import { FakerError } from '../../../src/errors/faker-error'; import type { LiteralUnion } from '../../../src/internal/types'; import type { AlphaNumericChar } from '../../../src/modules/string'; // explicitly export types so they show up in the docs as decomposed types -export type { NumberColorFormat, StringColorFormat } from '../../../src'; -export type { AlphaNumericChar, Casing, ColorFormat, LiteralUnion }; +export type { + Casing, + ColorFormat, + NumberColorFormat, + StringColorFormat, +} from '../../../src'; +export type { LiteralUnion } from '../../../src/internal/types'; +export type { AlphaNumericChar } from '../../../src/modules/string'; /** * Parameter options type with default from signature. -- cgit v1.2.3