SaylorTwift's picture
SaylorTwift HF Staff
Add files using upload-large-folder tool
4e23b01 verified
Raw
History Blame Contribute Delete
291 Bytes
import { z } from 'zod';
import { globalMessageBase } from './base';
export const pluginMessageSchema = z.object({
type: z.literal('plugin'),
...globalMessageBase,
});
export type PluginChanged = z.infer<typeof pluginMessageSchema>;
export type PluginChangedMessage = PluginChanged;