forked from XiaoMo/ChatGPT-Next-Web
6 lines
111 B
TypeScript
6 lines
111 B
TypeScript
import { type Mask } from "../store/mask";
|
|
|
|
export type BuiltinMask = Omit<Mask, "id"> & {
|
|
builtin: true;
|
|
};
|