-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathenv.d.ts
31 lines (26 loc) · 864 Bytes
/
env.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/// <reference types="vite/client" />
/// <reference types="@vue-macros/reactivity-transform/macros-global" />
interface Element {
scrollIntoViewIfNeeded(centerIfNeeded?: boolean): void,
}
declare namespace Intl {
interface DurationFormat {
format(value: any): string,
}
interface DurationFormatConstructor {
new (locales?: string | string[], options?: any): DurationFormat,
(locales?: string | string[], options?: any): DurationFormat,
supportedLocalesOf(locales: string | string[], options?: any): string[],
readonly prototype: DurationFormat,
}
const DurationFormat: DurationFormatConstructor
}
declare module '@achrinza/node-ipc' {
export { default } from 'node-ipc'
}
declare module 'commas:api/main' {
export * from '@commas/api/main'
}
declare module 'commas:api/renderer' {
export * from '@commas/api/renderer'
}