diff options
| author | Shinigami <[email protected]> | 2023-02-01 14:04:18 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-02-01 14:04:18 +0100 |
| commit | 5b705d4b047640e91b690566d6e0fdbae17bb842 (patch) | |
| tree | a179a77cca1b72e2c730607def2786a5531b531f /src/definitions | |
| parent | be77179faf097383763eaa6414cf7b6a1a8b131a (diff) | |
| download | faker-5b705d4b047640e91b690566d6e0fdbae17bb842.tar.xz faker-5b705d4b047640e91b690566d6e0fdbae17bb842.zip | |
infra: configure lint rule array-type (#1793)
Diffstat (limited to 'src/definitions')
| -rw-r--r-- | src/definitions/science.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/definitions/science.ts b/src/definitions/science.ts index 29e4f59e..b63767f6 100644 --- a/src/definitions/science.ts +++ b/src/definitions/science.ts @@ -8,10 +8,10 @@ export type ScienceDefinitions = LocaleEntry<{ /** * Some science units. */ - unit: readonly Unit[]; + unit: ReadonlyArray<Unit>; /** * Some periodic table element information. */ - chemicalElement: readonly ChemicalElement[]; + chemicalElement: ReadonlyArray<ChemicalElement>; }>; |
