7 lines
106 B
TypeScript
7 lines
106 B
TypeScript
|
|
||
|
// 定义 Link 类型
|
||
|
export type roomBtttonType = {
|
||
|
url : string;
|
||
|
targetUrl : string;
|
||
|
name : string
|
||
|
}
|