@player-ui/reference-assets-plugin 0.13.0-next.5 → 0.13.0-next.6

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.
@@ -0,0 +1,3 @@
1
+ export * from "./chat-ui-demo-plugin";
2
+ export * from "./reference-assets-transform-plugin";
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,17 @@
1
+ import type { ExtendedPlayerPlugin, Player } from "@player-ui/player";
2
+ import type { ActionAsset, ChatMessageAsset, ChoiceAsset, CollectionAsset, ImageAsset, InfoAsset, InputAsset, TextAsset } from "../assets";
3
+ export declare class ReferenceAssetsTransformPlugin implements ExtendedPlayerPlugin<[
4
+ ActionAsset,
5
+ InputAsset,
6
+ ImageAsset,
7
+ TextAsset,
8
+ CollectionAsset,
9
+ ChoiceAsset,
10
+ ChatMessageAsset
11
+ ], [
12
+ InfoAsset
13
+ ]> {
14
+ name: string;
15
+ apply(player: Player): void;
16
+ }
17
+ //# sourceMappingURL=reference-assets-transform-plugin.d.ts.map
@@ -0,0 +1,3 @@
1
+ import type { ExpressionHandler } from "@player-ui/player";
2
+ export type send = ExpressionHandler<[string, string | undefined]>;
3
+ //# sourceMappingURL=send.d.ts.map