mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-04 01:29:03 +08:00
* feat: pnpm new * Refactor build and release workflows, update dependencies Switch build scripts and workflows from npm to pnpm, update build and artifact paths, and simplify release workflow by removing version detection and changelog steps. Add new dependencies (silk-wasm, express, ws, node-pty-prebuilt-multiarch), update exports in package.json files, and add vite config for napcat-framework. Also, rename manifest.json for framework package and fix static asset copying in shell build config.
12 lines
260 B
TypeScript
12 lines
260 B
TypeScript
export const MODE_NUMBER = 1 << 0;
|
|
export const MODE_ALPHA_NUM = 1 << 1;
|
|
export const MODE_8BIT_BYTE = 1 << 2;
|
|
export const MODE_KANJI = 1 << 3;
|
|
export const QRMode = {
|
|
MODE_NUMBER,
|
|
MODE_ALPHA_NUM,
|
|
MODE_8BIT_BYTE,
|
|
MODE_KANJI,
|
|
};
|
|
export default QRMode;
|