adnbn 0.0.31 → 0.0.33
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.
- package/dist/background-Bx4Fzqrw.d.ts +14 -0
- package/dist/background-D44FHNlx.d.mts +14 -0
- package/dist/browser/index.cjs +993 -23
- package/dist/browser/index.cjs.map +1 -1
- package/dist/browser/index.d.mts +178 -8
- package/dist/browser/index.d.ts +178 -8
- package/dist/browser/index.js +878 -16
- package/dist/browser/index.js.map +1 -1
- package/dist/cli/index.cjs +1847 -631
- package/dist/cli/index.cjs.map +1 -1
- package/dist/command-XgmCdFrV.d.ts +27 -0
- package/dist/command-mVBd9ppw.d.mts +27 -0
- package/dist/content-C69bdOWN.d.ts +109 -0
- package/dist/content-CLNny8Z6.d.mts +109 -0
- package/dist/entry/background/index.cjs +44 -0
- package/dist/entry/background/index.cjs.map +1 -0
- package/dist/entry/background/index.d.mts +9 -0
- package/dist/entry/background/index.d.ts +9 -0
- package/dist/entry/background/index.js +38 -0
- package/dist/entry/background/index.js.map +1 -0
- package/dist/entry/command/index.cjs +364 -0
- package/dist/entry/command/index.cjs.map +1 -0
- package/dist/entry/command/index.d.mts +11 -0
- package/dist/entry/command/index.d.ts +11 -0
- package/dist/entry/command/index.js +357 -0
- package/dist/entry/command/index.js.map +1 -0
- package/dist/entry/content/index.cjs +44 -0
- package/dist/entry/content/index.cjs.map +1 -0
- package/dist/entry/content/index.d.mts +11 -0
- package/dist/entry/content/index.d.ts +11 -0
- package/dist/entry/content/index.js +40 -0
- package/dist/entry/content/index.js.map +1 -0
- package/dist/entry/content/react.cjs +453 -0
- package/dist/entry/content/react.cjs.map +1 -0
- package/dist/entry/content/react.d.mts +8 -0
- package/dist/entry/content/react.d.ts +8 -0
- package/dist/entry/content/react.js +446 -0
- package/dist/entry/content/react.js.map +1 -0
- package/dist/entry/content/vanilla.cjs +439 -0
- package/dist/entry/content/vanilla.cjs.map +1 -0
- package/dist/entry/content/vanilla.d.mts +8 -0
- package/dist/entry/content/vanilla.d.ts +8 -0
- package/dist/entry/content/vanilla.js +432 -0
- package/dist/entry/content/vanilla.js.map +1 -0
- package/dist/entry/view/index.cjs +19 -0
- package/dist/entry/view/index.cjs.map +1 -0
- package/dist/entry/view/index.d.mts +9 -0
- package/dist/entry/view/index.d.ts +9 -0
- package/dist/entry/view/index.js +16 -0
- package/dist/entry/view/index.js.map +1 -0
- package/dist/entry/view/vanilla.cjs +101 -0
- package/dist/entry/view/vanilla.cjs.map +1 -0
- package/dist/entry/view/vanilla.d.mts +8 -0
- package/dist/entry/view/vanilla.d.ts +8 -0
- package/dist/entry/view/vanilla.js +99 -0
- package/dist/entry/view/vanilla.js.map +1 -0
- package/dist/{command-ZfDymEyz.d.mts → helpers-DxjNkxDQ.d.mts} +24 -25
- package/dist/{command-ZfDymEyz.d.ts → helpers-DxjNkxDQ.d.ts} +24 -25
- package/dist/index.cjs +79 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +233 -13
- package/dist/index.d.ts +233 -13
- package/dist/index.js +71 -4
- package/dist/index.js.map +1 -1
- package/dist/locale/index.cjs +292 -0
- package/dist/locale/index.cjs.map +1 -0
- package/dist/locale/index.d.mts +26 -0
- package/dist/locale/index.d.ts +26 -0
- package/dist/locale/index.js +282 -0
- package/dist/locale/index.js.map +1 -0
- package/dist/locale-gnDtGmI3.d.mts +87 -0
- package/dist/locale-gnDtGmI3.d.ts +87 -0
- package/dist/manifest-9jBIZsVm.d.ts +92 -0
- package/dist/manifest-DSwwGEP7.d.mts +92 -0
- package/dist/view-4X82YrEg.d.mts +32 -0
- package/dist/view-CK4Fm9SL.d.ts +32 -0
- package/package.json +54 -9
- package/types/client.d.ts +261 -0
- package/dist/client/index.cjs +0 -58
- package/dist/client/index.cjs.map +0 -1
- package/dist/client/index.d.mts +0 -6
- package/dist/client/index.d.ts +0 -6
- package/dist/client/index.js +0 -56
- package/dist/client/index.js.map +0 -1
- package/dist/manifest-4vEG2PA3.d.mts +0 -140
- package/dist/manifest-D52-CONc.d.ts +0 -140
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { E as EntrypointOptions, A as Awaiter, a as EntrypointBuilder } from './helpers-DxjNkxDQ.js';
|
|
2
|
+
|
|
3
|
+
interface BackgroundConfig {
|
|
4
|
+
persistent?: boolean;
|
|
5
|
+
}
|
|
6
|
+
type BackgroundOptions = BackgroundConfig & EntrypointOptions;
|
|
7
|
+
type BackgroundEntrypointOptions = BackgroundOptions;
|
|
8
|
+
type BackgroundMainHandler = (options: BackgroundOptions) => Awaiter<void>;
|
|
9
|
+
interface BackgroundDefinition extends BackgroundEntrypointOptions {
|
|
10
|
+
main?: BackgroundMainHandler;
|
|
11
|
+
}
|
|
12
|
+
type BackgroundBuilder = EntrypointBuilder;
|
|
13
|
+
|
|
14
|
+
export type { BackgroundConfig as B, BackgroundDefinition as a, BackgroundMainHandler as b, BackgroundOptions as c, BackgroundEntrypointOptions as d, BackgroundBuilder as e };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { E as EntrypointOptions, A as Awaiter, a as EntrypointBuilder } from './helpers-DxjNkxDQ.mjs';
|
|
2
|
+
|
|
3
|
+
interface BackgroundConfig {
|
|
4
|
+
persistent?: boolean;
|
|
5
|
+
}
|
|
6
|
+
type BackgroundOptions = BackgroundConfig & EntrypointOptions;
|
|
7
|
+
type BackgroundEntrypointOptions = BackgroundOptions;
|
|
8
|
+
type BackgroundMainHandler = (options: BackgroundOptions) => Awaiter<void>;
|
|
9
|
+
interface BackgroundDefinition extends BackgroundEntrypointOptions {
|
|
10
|
+
main?: BackgroundMainHandler;
|
|
11
|
+
}
|
|
12
|
+
type BackgroundBuilder = EntrypointBuilder;
|
|
13
|
+
|
|
14
|
+
export type { BackgroundConfig as B, BackgroundDefinition as a, BackgroundMainHandler as b, BackgroundOptions as c, BackgroundEntrypointOptions as d, BackgroundBuilder as e };
|