mirror of
https://github.com/Yanyutin753/ChatGPT-Next-Web-LangChain-Gpt-4-All.git
synced 2025-10-14 15:11:28 +00:00
6 lines
122 B
TypeScript
6 lines
122 B
TypeScript
import { type Plugin } from "../store/plugin";
|
|
|
|
export type BuiltinPlugin = Omit<Plugin, "id"> & {
|
|
builtin: Boolean;
|
|
};
|