mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-22 22:36:06 +08:00
11 lines
160 B
TypeScript
11 lines
160 B
TypeScript
/// <reference types="express" />
|
|
|
|
export {};
|
|
|
|
declare global {
|
|
namespace Express {
|
|
interface Request {
|
|
platform: 'desktop' | 'mobile';
|
|
}
|
|
}
|
|
}
|