@lls/typings 24.36.0 → 24.37.0-0808d0b6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -38,7 +38,7 @@ declare global {
38
38
  namespace NodeJS {
39
39
  interface ProcessEnv {
40
40
  NODE_ENV: 'local' | 'development' | 'production'
41
- CONF_ENV: 'local' | 'development' | 'test' | 'preprod' | 'production' | 'prod'
41
+ CONF_ENV: 'local' | 'development' | 'test' | 'preprod' | 'production'
42
42
  }
43
43
  }
44
44
  var bun: {
@@ -48,9 +48,19 @@ declare global {
48
48
  mocked: <T>(t: T) => TODO
49
49
  mockCustom: <T, U>(fn: (t: T) => U) => (t: T) => U
50
50
  unmockAll: AnyFunction
51
- mock: (src: string, keysOrfn: string[] | AnyFunction) => unknown
51
+ mock: (src: string, keysOrfn?: string[] | AnyFunction | { [x: string]: unknown }) => unknown
52
52
  fn: any
53
53
  }
54
54
  var bunvi: typeof bun
55
55
  var fetch: Window['fetch']
56
+
57
+ namespace NodeJS {
58
+ interface ProcessEnv {
59
+ NODE_ENV: 'local' | 'development' | 'production'
60
+ CONF_ENV: 'local' | 'development' | 'test' | 'preprod' | 'production'
61
+ }
62
+ }
63
+ interface Error {
64
+ originalError?: object
65
+ }
56
66
  }
@@ -18,6 +18,7 @@ interface Window {
18
18
  sendEvent?: (name: string, opts: TPianoOpts) => void
19
19
  getVisitorId: () => string
20
20
  }
21
+ NativeCallback?: () => void
21
22
  paReady?: () => void
22
23
  playwrightInplaceNavigate: (value: string) => void
23
24
  playwrightStoryId: string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lls/typings",
3
- "version": "24.36.0",
3
+ "version": "24.37.0-0808d0b6",
4
4
  "description": "types custom du monorepo",
5
5
  "main": "index.js",
6
6
  "imports": {
@@ -15,14 +15,14 @@
15
15
  "@types/react": "18.3.12",
16
16
  "@yorab/react-paint": "0.14.0",
17
17
  "cheerio": "1.1.2",
18
- "typescript": "5.8.3"
18
+ "typescript": "5.9.3"
19
19
  },
20
20
  "peerDependencies": {
21
21
  "@biomejs/biome": "*",
22
22
  "cheerio": "*"
23
23
  },
24
24
  "scripts": {
25
- "dts": "pnpm tsc --project tsconfig.production.json",
25
+ "dts": "pnpm tsgo --project tsconfig.production.json",
26
26
  "lint": "pnpm biome check --apply *.d.ts internal overrides",
27
27
  "test": "echo \"Error: no test specified\" && exit 0"
28
28
  }