diff options
| author | ST-DDT <[email protected]> | 2024-12-02 10:34:57 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-12-02 10:34:57 +0100 |
| commit | 7d59cd9bfbfebaccc93811a50cc698e46e6c862b (patch) | |
| tree | 0d9fca812dcb3a0a43a5b7991a23150cf9262257 /test/scripts/apidocs/method.example.ts | |
| parent | 176d4300366b0481fbc01f2da3faad104d626dc9 (diff) | |
| download | faker-7d59cd9bfbfebaccc93811a50cc698e46e6c862b.tar.xz faker-7d59cd9bfbfebaccc93811a50cc698e46e6c862b.zip | |
infra(unicorn): prefer-export-from (#3272)
Diffstat (limited to 'test/scripts/apidocs/method.example.ts')
| -rw-r--r-- | test/scripts/apidocs/method.example.ts | 10 |
1 files changed, 8 insertions, 2 deletions
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. |
