mesurer-solid 0.1.0-beta.11
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/AGENT_INTEGRATION.md +189 -0
- package/LICENSE +21 -0
- package/README.md +233 -0
- package/THIRD_PARTY_LICENSES.md +29 -0
- package/dist/agent.d.ts +113 -0
- package/dist/context-contract-parity.d.ts +1 -0
- package/dist/context-plugin.d.ts +27 -0
- package/dist/context.d.ts +359 -0
- package/dist/core.d.ts +147 -0
- package/dist/core.js +226 -0
- package/dist/host-layer.d.ts +24 -0
- package/dist/index.d.ts +210 -0
- package/dist/index.js +10195 -0
- package/dist/inject-script.d.ts +1 -0
- package/dist/inject-script.js +1227 -0
- package/dist/inject.d.ts +12 -0
- package/dist/inject.js +9983 -0
- package/package.json +62 -0
- package/scripts/install-skill.mjs +31 -0
- package/skills/mesurer-ui/SKILL.md +111 -0
package/dist/inject.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { type MesurerContextPluginOptions, type MountMeasurerOptions, type MountedMeasurer } from "./index";
|
|
2
|
+
export type MesurerInjectConfig = Omit<MountMeasurerOptions, "target" | "agent" | "plugins"> & {
|
|
3
|
+
/** Optional application container selector. Defaults to document.body. */
|
|
4
|
+
target?: string;
|
|
5
|
+
/** Global agent API name. Defaults to __MESURER__. */
|
|
6
|
+
globalName?: string;
|
|
7
|
+
/** Additional plugins loaded after the default injected context plugin. */
|
|
8
|
+
plugins?: MountMeasurerOptions["plugins"];
|
|
9
|
+
/** Enable/configure the removable context plugin. Defaults to true for injection. */
|
|
10
|
+
context?: boolean | MesurerContextPluginOptions;
|
|
11
|
+
};
|
|
12
|
+
export declare const mesurer: MountedMeasurer;
|