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