Skip to content

Commit 99dc4f7

Browse files
committed
Merge Main
2 parents 5169d05 + f36810e commit 99dc4f7

71 files changed

Lines changed: 105 additions & 110 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

changelog/1.1.0.md

Lines changed: 4 additions & 0 deletions

deno.jsonc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
],
6363
"compilerOptions": {
6464
"strict": true,
65+
"verbatimModuleSyntax": true,
6566
"jsx": "react-jsx",
6667
"jsxImportSource": "npm:react@19.1.1",
6768
"types": ["npm:@types/react", "npm:@types/react-dom", "npm:@types/three"],

src/system/locale/_config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ THE SOFTWARE.
2828

2929
// deno-fmt-ignore-file
3030

31-
import { TLocalizedValidationMessageCallback } from '../../error/index.ts'
31+
import { type TLocalizedValidationMessageCallback } from '../../error/index.ts'
3232
import { en_US } from './en_US.ts'
3333

3434
let locale: TLocalizedValidationMessageCallback = en_US

src/system/locale/ar_001.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ THE SOFTWARE.
2929
// deno-fmt-ignore-file
3030
// deno-coverage-ignore-start
3131

32-
import { TValidationError } from '../../error/index.ts'
32+
import { type TValidationError } from '../../error/index.ts'
3333

3434
/** Arabic (World) - ISO 639-1 language code 'ar' with UN M.49 region code '001' for World. */
3535
export function ar_001(error: TValidationError): string {

src/system/locale/bn_BD.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ THE SOFTWARE.
2929
// deno-fmt-ignore-file
3030
// deno-coverage-ignore-start
3131

32-
import { TValidationError } from '../../error/index.ts'
32+
import { type TValidationError } from '../../error/index.ts'
3333

3434
/** Bengali (Bangladesh) - ISO 639-1 language code 'bn' with ISO 3166-1 alpha-2 country code 'BD' for Bangladesh. */
3535
export function bn_BD(error: TValidationError): string {

src/system/locale/cs_CZ.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ THE SOFTWARE.
2929
// deno-fmt-ignore-file
3030
// deno-coverage-ignore-start
3131

32-
import { TValidationError } from '../../error/index.ts'
32+
import { type TValidationError } from '../../error/index.ts'
3333

3434
/** Czech (Czech Republic) - ISO 639-1 language code 'cs' with ISO 3166-1 alpha-2 country code 'CZ' for Czech Republic. */
3535
export function cs_CZ(error: TValidationError): string {

src/system/locale/de_DE.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ THE SOFTWARE.
2929
// deno-fmt-ignore-file
3030
// deno-coverage-ignore-start
3131

32-
import { TValidationError } from '../../error/index.ts'
32+
import { type TValidationError } from '../../error/index.ts'
3333

3434
/** German (Germany) - ISO 639-1 language code 'de' with ISO 3166-1 alpha-2 country code 'DE' for Germany. */
3535
export function de_DE(error: TValidationError): string {

src/system/locale/el_GR.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ THE SOFTWARE.
2929
// deno-fmt-ignore-file
3030
// deno-coverage-ignore-start
3131

32-
import { TValidationError } from '../../error/index.ts'
32+
import { type TValidationError } from '../../error/index.ts'
3333

3434
/** Greek (Greece) - ISO 639-1 language code 'el' with ISO 3166-1 alpha-2 country code 'GR' for Greece. */
3535
export function el_GR(error: TValidationError): string {

src/system/locale/en_US.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ THE SOFTWARE.
2828

2929
// deno-fmt-ignore-file
3030

31-
import { TValidationError } from '../../error/index.ts'
31+
import { type TValidationError } from '../../error/index.ts'
3232

3333
/** en_US: English (United States) - ISO 639-1 language code 'en' with ISO 3166-1 alpha-2 country code 'US' for United States. */
3434
export function en_US(error: TValidationError): string {

src/system/locale/es_419.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ THE SOFTWARE.
2929
// deno-fmt-ignore-file
3030
// deno-coverage-ignore-start
3131

32-
import { TValidationError } from '../../error/index.ts'
32+
import { type TValidationError } from '../../error/index.ts'
3333

3434
/** Spanish (Latin America) - ISO 639-1 language code 'es' with UN M.49 region code '419' for Latin America and the Caribbean. */
3535
export function es_419(error: TValidationError): string {

0 commit comments

Comments
 (0)