7 lines
128 B
TypeScript
7 lines
128 B
TypeScript
|
// Liff資料
|
||
|
export interface ILiffData {
|
||
|
userId: string;
|
||
|
displayName: string;
|
||
|
statusMessage: string;
|
||
|
pictureUrl: string;
|
||
|
}
|