mirror of
https://github.com/Yidadaa/ChatGPT-Next-Web.git
synced 2025-08-09 00:15:38 +08:00
6 lines
111 B
TypeScript
6 lines
111 B
TypeScript
import { type Mask } from "../store/mask";
|
|
|
|
export type BuiltinMask = Omit<Mask, "id"> & {
|
|
builtin: true;
|
|
};
|