mirror of
https://gitee.com/dapppp/ruoyi-plus-vben5.git
synced 2026-03-18 17:48:49 +08:00
10 lines
185 B
TypeScript
10 lines
185 B
TypeScript
interface LockAndRegisterParams {
|
|
lockScreenPassword: string;
|
|
}
|
|
|
|
interface RegisterEmits {
|
|
submit: [LockAndRegisterParams];
|
|
}
|
|
|
|
export type { LockAndRegisterParams, RegisterEmits };
|