@dxos/plugin-transformer 0.8.3 → 0.8.4-main.1068cf700f
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/lib/browser/index.mjs +27 -27
- package/dist/lib/browser/index.mjs.map +3 -3
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/node-esm/index.mjs +27 -27
- package/dist/lib/node-esm/index.mjs.map +3 -3
- package/dist/lib/node-esm/meta.json +1 -1
- package/dist/types/src/TransformerPlugin.d.ts +2 -1
- package/dist/types/src/TransformerPlugin.d.ts.map +1 -1
- package/dist/types/src/components/Voice.d.ts.map +1 -1
- package/dist/types/src/components/Voice.stories.d.ts +9 -3
- package/dist/types/src/components/Voice.stories.d.ts.map +1 -1
- package/dist/types/src/meta.d.ts +2 -3
- package/dist/types/src/meta.d.ts.map +1 -1
- package/dist/types/src/translations.d.ts +6 -6
- package/dist/types/src/translations.d.ts.map +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +37 -35
- package/src/TransformerPlugin.tsx +13 -26
- package/src/components/DebugInfo.tsx +2 -2
- package/src/components/Voice.stories.tsx +5 -7
- package/src/components/Voice.tsx +3 -2
- package/src/hooks/useAudioStream.ts +2 -2
- package/src/hooks/usePipeline.ts +2 -2
- package/src/meta.ts +8 -6
- package/src/translations.ts +6 -4
- package/dist/lib/node/index.cjs +0 -71
- package/dist/lib/node/index.cjs.map +0 -7
- package/dist/lib/node/meta.json +0 -1
- package/dist/lib/node/types/index.cjs +0 -2
- package/dist/lib/node/types/index.cjs.map +0 -7
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
//
|
|
2
|
-
|
|
1
|
+
// src/meta.ts
|
|
2
|
+
import { trim } from "@dxos/util";
|
|
3
3
|
var meta = {
|
|
4
|
-
id:
|
|
4
|
+
id: "dxos.org/plugin/transformer",
|
|
5
5
|
name: "Transformer",
|
|
6
|
-
description:
|
|
6
|
+
description: trim`
|
|
7
|
+
Execute local machine learning transformers and AI models directly in your browser.
|
|
8
|
+
Run embeddings, classifications, and other ML tasks without server dependencies.
|
|
9
|
+
`,
|
|
7
10
|
icon: "ph--cpu--regular",
|
|
8
11
|
source: "https://github.com/dxos/dxos/tree/main/packages/plugins/plugin-transformer",
|
|
9
12
|
tags: [
|
|
@@ -11,41 +14,38 @@ var meta = {
|
|
|
11
14
|
]
|
|
12
15
|
};
|
|
13
16
|
|
|
14
|
-
//
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
+
// src/TransformerPlugin.tsx
|
|
18
|
+
import { Plugin } from "@dxos/app-framework";
|
|
19
|
+
import { AppPlugin } from "@dxos/app-toolkit";
|
|
17
20
|
|
|
18
|
-
//
|
|
19
|
-
var
|
|
21
|
+
// src/translations.ts
|
|
22
|
+
var translations = [
|
|
20
23
|
{
|
|
21
24
|
"en-US": {
|
|
22
|
-
[
|
|
25
|
+
[meta.id]: {
|
|
23
26
|
"plugin name": "Transformers"
|
|
24
27
|
}
|
|
25
28
|
}
|
|
26
29
|
}
|
|
27
30
|
];
|
|
28
31
|
|
|
29
|
-
//
|
|
30
|
-
var TransformerPlugin = ()
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
activate: () => contributes(Capabilities.Translations, translations_default)
|
|
32
|
+
// src/TransformerPlugin.tsx
|
|
33
|
+
var TransformerPlugin = Plugin.define(meta).pipe(
|
|
34
|
+
AppPlugin.addSchemaModule({
|
|
35
|
+
schema: [],
|
|
36
|
+
id: "schema"
|
|
35
37
|
}),
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
activatesOn: Events.SetupMetadata,
|
|
39
|
-
activate: () => []
|
|
38
|
+
AppPlugin.addTranslationsModule({
|
|
39
|
+
translations
|
|
40
40
|
}),
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
})
|
|
46
|
-
|
|
41
|
+
// Plugin.addModule({
|
|
42
|
+
// id: 'intent-resolver',
|
|
43
|
+
// activatesOn: Events.SetupIntentResolver,
|
|
44
|
+
// activate: IntentResolver,
|
|
45
|
+
// }),
|
|
46
|
+
Plugin.make
|
|
47
|
+
);
|
|
47
48
|
export {
|
|
48
|
-
TRANSFORMER_PLUGIN,
|
|
49
49
|
TransformerPlugin,
|
|
50
50
|
meta
|
|
51
51
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/meta.ts", "../../../src/TransformerPlugin.tsx", "../../../src/translations.ts"],
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport { type
|
|
5
|
-
"mappings": ";
|
|
6
|
-
"names": ["
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport { type Plugin } from '@dxos/app-framework';\nimport { trim } from '@dxos/util';\n\nexport const meta: Plugin.Meta = {\n id: 'dxos.org/plugin/transformer',\n name: 'Transformer',\n description: trim`\n Execute local machine learning transformers and AI models directly in your browser.\n Run embeddings, classifications, and other ML tasks without server dependencies.\n `,\n icon: 'ph--cpu--regular',\n source: 'https://github.com/dxos/dxos/tree/main/packages/plugins/plugin-transformer',\n tags: ['labs'],\n};\n", "//\n// Copyright 2024 DXOS.org\n//\n\nimport { Plugin } from '@dxos/app-framework';\nimport { AppPlugin } from '@dxos/app-toolkit';\n\n// import { IntentResolver } from './capabilities';\nimport { meta } from './meta';\nimport { translations } from './translations';\n\nexport const TransformerPlugin = Plugin.define(meta).pipe(\n AppPlugin.addSchemaModule({ schema: [], id: 'schema' }),\n AppPlugin.addTranslationsModule({ translations }),\n // Plugin.addModule({\n // id: 'intent-resolver',\n // activatesOn: Events.SetupIntentResolver,\n // activate: IntentResolver,\n // }),\n Plugin.make,\n);\n", "//\n// Copyright 2023 DXOS.org\n//\n\nimport { type Resource } from '@dxos/react-ui';\n\nimport { meta } from './meta';\n\nexport const translations = [\n {\n 'en-US': {\n [meta.id]: {\n 'plugin name': 'Transformers',\n },\n },\n },\n] as const satisfies Resource[];\n"],
|
|
5
|
+
"mappings": ";AAKA,SAASA,YAAY;AAEd,IAAMC,OAAoB;EAC/BC,IAAI;EACJC,MAAM;EACNC,aAAaC;;;;EAIbC,MAAM;EACNC,QAAQ;EACRC,MAAM;IAAC;;AACT;;;ACbA,SAASC,cAAc;AACvB,SAASC,iBAAiB;;;ACGnB,IAAMC,eAAe;EAC1B;IACE,SAAS;MACP,CAACC,KAAKC,EAAE,GAAG;QACT,eAAe;MACjB;IACF;EACF;;;;ADJK,IAAMC,oBAAoBC,OAAOC,OAAOC,IAAAA,EAAMC;EACnDC,UAAUC,gBAAgB;IAAEC,QAAQ,CAAA;IAAIC,IAAI;EAAS,CAAA;EACrDH,UAAUI,sBAAsB;IAAEC;EAAa,CAAA;;;;;;EAM/CT,OAAOU;AAAI;",
|
|
6
|
+
"names": ["trim", "meta", "id", "name", "description", "trim", "icon", "source", "tags", "Plugin", "AppPlugin", "translations", "meta", "id", "TransformerPlugin", "Plugin", "define", "meta", "pipe", "AppPlugin", "addSchemaModule", "schema", "id", "addTranslationsModule", "translations", "make"]
|
|
7
7
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"
|
|
1
|
+
{"inputs":{"src/meta.ts":{"bytes":1859,"imports":[{"path":"@dxos/util","kind":"import-statement","external":true}],"format":"esm"},"src/translations.ts":{"bytes":1135,"imports":[{"path":"src/meta.ts","kind":"import-statement","original":"./meta"}],"format":"esm"},"src/TransformerPlugin.tsx":{"bytes":2384,"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-toolkit","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"./meta"},{"path":"src/translations.ts","kind":"import-statement","original":"./translations"}],"format":"esm"},"src/index.ts":{"bytes":567,"imports":[{"path":"src/meta.ts","kind":"import-statement","original":"./meta"},{"path":"src/TransformerPlugin.tsx","kind":"import-statement","original":"./TransformerPlugin"}],"format":"esm"},"src/types/index.ts":{"bytes":380,"imports":[],"format":"esm"}},"outputs":{"dist/lib/browser/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":2358},"dist/lib/browser/index.mjs":{"imports":[{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-toolkit","kind":"import-statement","external":true}],"exports":["TransformerPlugin","meta"],"entryPoint":"src/index.ts","inputs":{"src/meta.ts":{"bytesInOutput":451},"src/index.ts":{"bytesInOutput":0},"src/TransformerPlugin.tsx":{"bytesInOutput":432},"src/translations.ts":{"bytesInOutput":118}},"bytes":1175},"dist/lib/browser/types/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":93},"dist/lib/browser/types/index.mjs":{"imports":[],"exports":[],"entryPoint":"src/types/index.ts","inputs":{"src/types/index.ts":{"bytesInOutput":0}},"bytes":35}}}
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
import { createRequire } from 'node:module';const require = createRequire(import.meta.url);
|
|
2
2
|
|
|
3
|
-
//
|
|
4
|
-
|
|
3
|
+
// src/meta.ts
|
|
4
|
+
import { trim } from "@dxos/util";
|
|
5
5
|
var meta = {
|
|
6
|
-
id:
|
|
6
|
+
id: "dxos.org/plugin/transformer",
|
|
7
7
|
name: "Transformer",
|
|
8
|
-
description:
|
|
8
|
+
description: trim`
|
|
9
|
+
Execute local machine learning transformers and AI models directly in your browser.
|
|
10
|
+
Run embeddings, classifications, and other ML tasks without server dependencies.
|
|
11
|
+
`,
|
|
9
12
|
icon: "ph--cpu--regular",
|
|
10
13
|
source: "https://github.com/dxos/dxos/tree/main/packages/plugins/plugin-transformer",
|
|
11
14
|
tags: [
|
|
@@ -13,41 +16,38 @@ var meta = {
|
|
|
13
16
|
]
|
|
14
17
|
};
|
|
15
18
|
|
|
16
|
-
//
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
+
// src/TransformerPlugin.tsx
|
|
20
|
+
import { Plugin } from "@dxos/app-framework";
|
|
21
|
+
import { AppPlugin } from "@dxos/app-toolkit";
|
|
19
22
|
|
|
20
|
-
//
|
|
21
|
-
var
|
|
23
|
+
// src/translations.ts
|
|
24
|
+
var translations = [
|
|
22
25
|
{
|
|
23
26
|
"en-US": {
|
|
24
|
-
[
|
|
27
|
+
[meta.id]: {
|
|
25
28
|
"plugin name": "Transformers"
|
|
26
29
|
}
|
|
27
30
|
}
|
|
28
31
|
}
|
|
29
32
|
];
|
|
30
33
|
|
|
31
|
-
//
|
|
32
|
-
var TransformerPlugin = ()
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
activate: () => contributes(Capabilities.Translations, translations_default)
|
|
34
|
+
// src/TransformerPlugin.tsx
|
|
35
|
+
var TransformerPlugin = Plugin.define(meta).pipe(
|
|
36
|
+
AppPlugin.addSchemaModule({
|
|
37
|
+
schema: [],
|
|
38
|
+
id: "schema"
|
|
37
39
|
}),
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
activatesOn: Events.SetupMetadata,
|
|
41
|
-
activate: () => []
|
|
40
|
+
AppPlugin.addTranslationsModule({
|
|
41
|
+
translations
|
|
42
42
|
}),
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
})
|
|
48
|
-
|
|
43
|
+
// Plugin.addModule({
|
|
44
|
+
// id: 'intent-resolver',
|
|
45
|
+
// activatesOn: Events.SetupIntentResolver,
|
|
46
|
+
// activate: IntentResolver,
|
|
47
|
+
// }),
|
|
48
|
+
Plugin.make
|
|
49
|
+
);
|
|
49
50
|
export {
|
|
50
|
-
TRANSFORMER_PLUGIN,
|
|
51
51
|
TransformerPlugin,
|
|
52
52
|
meta
|
|
53
53
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/meta.ts", "../../../src/TransformerPlugin.tsx", "../../../src/translations.ts"],
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport { type
|
|
5
|
-
"mappings": ";;;
|
|
6
|
-
"names": ["
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport { type Plugin } from '@dxos/app-framework';\nimport { trim } from '@dxos/util';\n\nexport const meta: Plugin.Meta = {\n id: 'dxos.org/plugin/transformer',\n name: 'Transformer',\n description: trim`\n Execute local machine learning transformers and AI models directly in your browser.\n Run embeddings, classifications, and other ML tasks without server dependencies.\n `,\n icon: 'ph--cpu--regular',\n source: 'https://github.com/dxos/dxos/tree/main/packages/plugins/plugin-transformer',\n tags: ['labs'],\n};\n", "//\n// Copyright 2024 DXOS.org\n//\n\nimport { Plugin } from '@dxos/app-framework';\nimport { AppPlugin } from '@dxos/app-toolkit';\n\n// import { IntentResolver } from './capabilities';\nimport { meta } from './meta';\nimport { translations } from './translations';\n\nexport const TransformerPlugin = Plugin.define(meta).pipe(\n AppPlugin.addSchemaModule({ schema: [], id: 'schema' }),\n AppPlugin.addTranslationsModule({ translations }),\n // Plugin.addModule({\n // id: 'intent-resolver',\n // activatesOn: Events.SetupIntentResolver,\n // activate: IntentResolver,\n // }),\n Plugin.make,\n);\n", "//\n// Copyright 2023 DXOS.org\n//\n\nimport { type Resource } from '@dxos/react-ui';\n\nimport { meta } from './meta';\n\nexport const translations = [\n {\n 'en-US': {\n [meta.id]: {\n 'plugin name': 'Transformers',\n },\n },\n },\n] as const satisfies Resource[];\n"],
|
|
5
|
+
"mappings": ";;;AAKA,SAASA,YAAY;AAEd,IAAMC,OAAoB;EAC/BC,IAAI;EACJC,MAAM;EACNC,aAAaC;;;;EAIbC,MAAM;EACNC,QAAQ;EACRC,MAAM;IAAC;;AACT;;;ACbA,SAASC,cAAc;AACvB,SAASC,iBAAiB;;;ACGnB,IAAMC,eAAe;EAC1B;IACE,SAAS;MACP,CAACC,KAAKC,EAAE,GAAG;QACT,eAAe;MACjB;IACF;EACF;;;;ADJK,IAAMC,oBAAoBC,OAAOC,OAAOC,IAAAA,EAAMC;EACnDC,UAAUC,gBAAgB;IAAEC,QAAQ,CAAA;IAAIC,IAAI;EAAS,CAAA;EACrDH,UAAUI,sBAAsB;IAAEC;EAAa,CAAA;;;;;;EAM/CT,OAAOU;AAAI;",
|
|
6
|
+
"names": ["trim", "meta", "id", "name", "description", "trim", "icon", "source", "tags", "Plugin", "AppPlugin", "translations", "meta", "id", "TransformerPlugin", "Plugin", "define", "meta", "pipe", "AppPlugin", "addSchemaModule", "schema", "id", "addTranslationsModule", "translations", "make"]
|
|
7
7
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"
|
|
1
|
+
{"inputs":{"src/meta.ts":{"bytes":1859,"imports":[{"path":"@dxos/util","kind":"import-statement","external":true}],"format":"esm"},"src/translations.ts":{"bytes":1135,"imports":[{"path":"src/meta.ts","kind":"import-statement","original":"./meta"}],"format":"esm"},"src/TransformerPlugin.tsx":{"bytes":2384,"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-toolkit","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"./meta"},{"path":"src/translations.ts","kind":"import-statement","original":"./translations"}],"format":"esm"},"src/index.ts":{"bytes":567,"imports":[{"path":"src/meta.ts","kind":"import-statement","original":"./meta"},{"path":"src/TransformerPlugin.tsx","kind":"import-statement","original":"./TransformerPlugin"}],"format":"esm"},"src/types/index.ts":{"bytes":380,"imports":[],"format":"esm"}},"outputs":{"dist/lib/node-esm/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":2360},"dist/lib/node-esm/index.mjs":{"imports":[{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-toolkit","kind":"import-statement","external":true}],"exports":["TransformerPlugin","meta"],"entryPoint":"src/index.ts","inputs":{"src/meta.ts":{"bytesInOutput":451},"src/index.ts":{"bytesInOutput":0},"src/TransformerPlugin.tsx":{"bytesInOutput":432},"src/translations.ts":{"bytesInOutput":118}},"bytes":1268},"dist/lib/node-esm/types/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":93},"dist/lib/node-esm/types/index.mjs":{"imports":[],"exports":[],"entryPoint":"src/types/index.ts","inputs":{"src/types/index.ts":{"bytesInOutput":0}},"bytes":127}}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TransformerPlugin.d.ts","sourceRoot":"","sources":["../../../src/TransformerPlugin.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"TransformerPlugin.d.ts","sourceRoot":"","sources":["../../../src/TransformerPlugin.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAO7C,eAAO,MAAM,iBAAiB,4BAS7B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Voice.d.ts","sourceRoot":"","sources":["../../../../src/components/Voice.tsx"],"names":[],"mappings":"AAIA,OAAO,KAA2C,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"Voice.d.ts","sourceRoot":"","sources":["../../../../src/components/Voice.tsx"],"names":[],"mappings":"AAIA,OAAO,KAA2C,MAAM,OAAO,CAAC;AAQhE,MAAM,MAAM,UAAU,GAAG;IACvB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,eAAO,MAAM,KAAK,GAAI,0BAAkD,UAAU,sBA4FjF,CAAC"}
|
|
@@ -1,7 +1,13 @@
|
|
|
1
|
-
import '@
|
|
2
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
1
|
+
import { type StoryObj } from '@storybook/react-vite';
|
|
3
2
|
import { Voice } from './Voice';
|
|
4
|
-
declare const meta:
|
|
3
|
+
declare const meta: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: ({ active, debug, model }: import("./Voice").VoiceProps) => import("react").JSX.Element;
|
|
6
|
+
decorators: import("@storybook/react").Decorator[];
|
|
7
|
+
parameters: {
|
|
8
|
+
layout: string;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
5
11
|
export default meta;
|
|
6
12
|
type Story = StoryObj<typeof Voice>;
|
|
7
13
|
export declare const Default: Story;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Voice.stories.d.ts","sourceRoot":"","sources":["../../../../src/components/Voice.stories.tsx"],"names":[],"mappings":"AAIA,OAAO,
|
|
1
|
+
{"version":3,"file":"Voice.stories.d.ts","sourceRoot":"","sources":["../../../../src/components/Voice.stories.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAa,KAAK,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAIjE,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAEhC,QAAA,MAAM,IAAI;;;;;;;CAOoB,CAAC;AAE/B,eAAe,IAAI,CAAC;AAEpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,KAAK,CAAC,CAAC;AAEpC,eAAO,MAAM,OAAO,EAAE,KAMrB,CAAC"}
|
package/dist/types/src/meta.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { type
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const meta: PluginMeta;
|
|
1
|
+
import { type Plugin } from '@dxos/app-framework';
|
|
2
|
+
export declare const meta: Plugin.Meta;
|
|
4
3
|
//# sourceMappingURL=meta.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"meta.d.ts","sourceRoot":"","sources":["../../../src/meta.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,
|
|
1
|
+
{"version":3,"file":"meta.d.ts","sourceRoot":"","sources":["../../../src/meta.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAGlD,eAAO,MAAM,IAAI,EAAE,MAAM,CAAC,IAUzB,CAAC"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { meta } from './meta';
|
|
2
|
+
export declare const translations: [{
|
|
3
|
+
readonly 'en-US': {
|
|
4
|
+
readonly [meta.id]: {
|
|
5
|
+
readonly 'plugin name': "Transformers";
|
|
5
6
|
};
|
|
6
7
|
};
|
|
7
|
-
}
|
|
8
|
-
export default _default;
|
|
8
|
+
}];
|
|
9
9
|
//# sourceMappingURL=translations.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"translations.d.ts","sourceRoot":"","sources":["../../../src/translations.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"translations.d.ts","sourceRoot":"","sources":["../../../src/translations.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAE9B,eAAO,MAAM,YAAY;;QAGnB,SAAA,CAAC,IAAI,CAAC,EAAE,CAAC;;UAER;;EAGwB,CAAC"}
|