mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-05-22 21:50:16 +09: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;
|
|
};
|